diff options
| author | Tom Lane | 2011-02-08 21:08:41 +0000 |
|---|---|---|
| committer | Tom Lane | 2011-02-08 21:13:22 +0000 |
| commit | d9572c4e3b474031060189050e14ef384b94e001 (patch) | |
| tree | 07646762f4086b94a69b9fc215734d2bccade5db /src/include/commands/conversioncmds.h | |
| parent | 414c5a2ea65cbd38d79ffdf9b1fde7cc75c134e0 (diff) | |
Core support for "extensions", which are packages of SQL objects.
This patch adds the server infrastructure to support extensions.
There is still one significant loose end, namely how to make it play nice
with pg_upgrade, so I am not yet committing the changes that would make
all the contrib modules depend on this feature.
In passing, fix a disturbingly large amount of breakage in
AlterObjectNamespace() and callers.
Dimitri Fontaine, reviewed by Anssi Kääriäinen,
Itagaki Takahiro, Tom Lane, and numerous others
Diffstat (limited to 'src/include/commands/conversioncmds.h')
| -rw-r--r-- | src/include/commands/conversioncmds.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/include/commands/conversioncmds.h b/src/include/commands/conversioncmds.h index 6156c4a94e6..f77023ffe32 100644 --- a/src/include/commands/conversioncmds.h +++ b/src/include/commands/conversioncmds.h @@ -23,5 +23,6 @@ extern void RenameConversion(List *name, const char *newname); extern void AlterConversionOwner(List *name, Oid newOwnerId); extern void AlterConversionOwner_oid(Oid conversionOid, Oid newOwnerId); extern void AlterConversionNamespace(List *name, const char *newschema); +extern Oid AlterConversionNamespace_oid(Oid convOid, Oid newNspOid); #endif /* CONVERSIONCMDS_H */ |
