~ubuntu-branches/debian/sid/postgresql-9.3/sid

« back to all changes in this revision

Viewing changes to src/include/catalog/pg_collation_fn.h

  • Committer: Package Import Robot
  • Author(s): Martin Pitt
  • Date: 2013-05-08 05:39:52 UTC
  • Revision ID: package-import@ubuntu.com-20130508053952-1j7uilp7mjtrvq8q
Tags: upstream-9.3~beta1
ImportĀ upstreamĀ versionĀ 9.3~beta1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*-------------------------------------------------------------------------
 
2
 *
 
3
 * pg_collation_fn.h
 
4
 *       prototypes for functions in catalog/pg_collation.c
 
5
 *
 
6
 *
 
7
 * Portions Copyright (c) 1996-2013, PostgreSQL Global Development Group
 
8
 * Portions Copyright (c) 1994, Regents of the University of California
 
9
 *
 
10
 * src/include/catalog/pg_collation_fn.h
 
11
 *
 
12
 *-------------------------------------------------------------------------
 
13
 */
 
14
#ifndef PG_COLLATION_FN_H
 
15
#define PG_COLLATION_FN_H
 
16
 
 
17
extern Oid CollationCreate(const char *collname, Oid collnamespace,
 
18
                                Oid collowner,
 
19
                                int32 collencoding,
 
20
                                const char *collcollate, const char *collctype);
 
21
extern void RemoveCollationById(Oid collationOid);
 
22
 
 
23
#endif   /* PG_COLLATION_FN_H */