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/collationcmds.h | |
parent | 1f91c8ca1d2edc66c688ee719eded79ecd0e8f1b (diff) | |
download | postgresql-994c36e01d19dece2b0c76fb781e1d08a6e1c814.tar.gz postgresql-994c36e01d19dece2b0c76fb781e1d08a6e1c814.zip |
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/collationcmds.h')
-rw-r--r-- | src/include/commands/collationcmds.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/include/commands/collationcmds.h b/src/include/commands/collationcmds.h index 0587c4f3ff1..6d9db099c29 100644 --- a/src/include/commands/collationcmds.h +++ b/src/include/commands/collationcmds.h @@ -19,8 +19,6 @@ extern void DefineCollation(List *names, List *parameters); extern void RenameCollation(List *name, const char *newname); -extern void AlterCollationOwner(List *name, Oid newOwnerId); -extern void AlterCollationOwner_oid(Oid collationOid, Oid newOwnerId); extern void AlterCollationNamespace(List *name, const char *newschema); extern Oid AlterCollationNamespace_oid(Oid collOid, Oid newNspOid); |