diff options
author | Robert Haas | 2011-10-20 03:25:20 +0000 |
---|---|---|
committer | Robert Haas | 2011-10-20 03:27:19 +0000 |
commit | 82a4a777d94bec965ab2f1d04b6e6a3f0447b377 (patch) | |
tree | b3560173b695b8391ca81edf47c4b364005a608b /src/include/commands/collationcmds.h | |
parent | 3301c83536e9da1e573e24ded2e610062dbf9cdc (diff) |
Consolidate DROP handling for some object types.
This gets rid of a significant amount of duplicative code.
KaiGai Kohei, reviewed in earlier versions by Dimitri Fontaine, with
further review and cleanup by me.
Diffstat (limited to 'src/include/commands/collationcmds.h')
-rw-r--r-- | src/include/commands/collationcmds.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/include/commands/collationcmds.h b/src/include/commands/collationcmds.h index 6dbeb751aa9..ce4727c0f11 100644 --- a/src/include/commands/collationcmds.h +++ b/src/include/commands/collationcmds.h @@ -18,7 +18,6 @@ #include "nodes/parsenodes.h" extern void DefineCollation(List *names, List *parameters); -extern void DropCollationsCommand(DropStmt *drop); extern void RenameCollation(List *name, const char *newname); extern void AlterCollationOwner(List *name, Oid newOwnerId); extern void AlterCollationOwner_oid(Oid collationOid, Oid newOwnerId); |