Header And Logo

PostgreSQL
| The world's most advanced open source database.

pg_collation_fn.h

Go to the documentation of this file.
00001 /*-------------------------------------------------------------------------
00002  *
00003  * pg_collation_fn.h
00004  *   prototypes for functions in catalog/pg_collation.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/catalog/pg_collation_fn.h
00011  *
00012  *-------------------------------------------------------------------------
00013  */
00014 #ifndef PG_COLLATION_FN_H
00015 #define PG_COLLATION_FN_H
00016 
00017 extern Oid CollationCreate(const char *collname, Oid collnamespace,
00018                 Oid collowner,
00019                 int32 collencoding,
00020                 const char *collcollate, const char *collctype);
00021 extern void RemoveCollationById(Oid collationOid);
00022 
00023 #endif   /* PG_COLLATION_FN_H */