summaryrefslogtreecommitdiff
path: root/src/include/commands/extension.h
diff options
context:
space:
mode:
authorTom Lane2011-02-10 22:36:44 +0000
committerTom Lane2011-02-10 22:37:22 +0000
commit01467d3e4f51fe304c0160c9895484ad696d1e87 (patch)
tree6ce04b83da1f5c472281b3970eab67e2b8fc0d6a /src/include/commands/extension.h
parent289d7306555b2446d145c7e098c91b6ca20bd54c (diff)
Extend "ALTER EXTENSION ADD object" to permit "DROP object" as well.
Per discussion, this is something we should have sooner rather than later, and it doesn't take much additional code to support it.
Diffstat (limited to 'src/include/commands/extension.h')
-rw-r--r--src/include/commands/extension.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/commands/extension.h b/src/include/commands/extension.h
index 8c07c3aaeff..7c94449a6cb 100644
--- a/src/include/commands/extension.h
+++ b/src/include/commands/extension.h
@@ -37,7 +37,7 @@ extern Oid InsertExtensionTuple(const char *extName, Oid extOwner,
Datum extConfig, Datum extCondition,
List *requiredExtensions);
-extern void ExecAlterExtensionAddStmt(AlterExtensionAddStmt *stmt);
+extern void ExecAlterExtensionContentsStmt(AlterExtensionContentsStmt *stmt);
extern Oid get_extension_oid(const char *extname, bool missing_ok);
extern char *get_extension_name(Oid ext_oid);