Fix ancient bug in handling of to_char modifier 'TH', when used with HH.
[PostgreSQL.git] / src / include / commands / schemacmds.h
blob5f384a17a2a47a47a752748d3e12d3d3a8c209ca
1 /*-------------------------------------------------------------------------
3 * schemacmds.h
4 * prototypes for schemacmds.c.
7 * Portions Copyright (c) 1996-2009, PostgreSQL Global Development Group
8 * Portions Copyright (c) 1994, Regents of the University of California
10 * $PostgreSQL$
12 *-------------------------------------------------------------------------
15 #ifndef SCHEMACMDS_H
16 #define SCHEMACMDS_H
18 #include "nodes/parsenodes.h"
20 extern void CreateSchemaCommand(CreateSchemaStmt *parsetree,
21 const char *queryString);
23 extern void RemoveSchemas(DropStmt *drop);
24 extern void RemoveSchemaById(Oid schemaOid);
26 extern void RenameSchema(const char *oldname, const char *newname);
27 extern void AlterSchemaOwner(const char *name, Oid newOwnerId);
28 extern void AlterSchemaOwner_oid(Oid schemaOid, Oid newOwnerId);
30 #endif /* SCHEMACMDS_H */