diff options
author | Tom Lane | 2011-02-10 22:36:44 +0000 |
---|---|---|
committer | Tom Lane | 2011-02-10 22:37:22 +0000 |
commit | 01467d3e4f51fe304c0160c9895484ad696d1e87 (patch) | |
tree | 6ce04b83da1f5c472281b3970eab67e2b8fc0d6a /src/include/commands/extension.h | |
parent | 289d7306555b2446d145c7e098c91b6ca20bd54c (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.h | 2 |
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); |