diff options
author | Alvaro Herrera <alvherre@alvh.no-ip.org> | 2012-10-03 18:02:38 -0300 |
---|---|---|
committer | Alvaro Herrera <alvherre@alvh.no-ip.org> | 2012-10-03 18:07:46 -0300 |
commit | 994c36e01d19dece2b0c76fb781e1d08a6e1c814 (patch) | |
tree | 584ad1b7807646382b4d25f0188745f14953ebef /src/include/commands/conversioncmds.h | |
parent | 1f91c8ca1d2edc66c688ee719eded79ecd0e8f1b (diff) |
refactor ALTER some-obj SET OWNER implementation
Remove duplicate implementation of catalog munging and miscellaneous
privilege and consistency checks. Instead rely on already existing data
in objectaddress.c to do the work.
Author: KaiGai Kohei
Tweaked by me
Reviewed by Robert Haas
Diffstat (limited to 'src/include/commands/conversioncmds.h')
-rw-r--r-- | src/include/commands/conversioncmds.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/include/commands/conversioncmds.h b/src/include/commands/conversioncmds.h index 778161bd69a..2f9abad9470 100644 --- a/src/include/commands/conversioncmds.h +++ b/src/include/commands/conversioncmds.h @@ -19,7 +19,5 @@ extern void CreateConversionCommand(CreateConversionStmt *parsetree); extern void RenameConversion(List *name, const char *newname); -extern void AlterConversionOwner(List *name, Oid newOwnerId); -extern void AlterConversionOwner_oid(Oid conversionOid, Oid newOwnerId); #endif /* CONVERSIONCMDS_H */ |