1 /*-------------------------------------------------------------------------
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
12 *-------------------------------------------------------------------------
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 */