00001 /*------------------------------------------------------------------------- 00002 * 00003 * collationcmds.h 00004 * prototypes for collationcmds.c. 00005 * 00006 * 00007 * Portions Copyright (c) 1996-2013, PostgreSQL Global Development Group 00008 * Portions Copyright (c) 1994, Regents of the University of California 00009 * 00010 * src/include/commands/collationcmds.h 00011 * 00012 *------------------------------------------------------------------------- 00013 */ 00014 00015 #ifndef COLLATIONCMDS_H 00016 #define COLLATIONCMDS_H 00017 00018 #include "nodes/parsenodes.h" 00019 00020 extern Oid DefineCollation(List *names, List *parameters); 00021 extern void IsThereCollationInNamespace(const char *collname, Oid nspOid); 00022 00023 #endif /* COLLATIONCMDS_H */