mirror of
https://github.com/postgres/postgres.git
synced 2025-10-19 15:49:24 +03:00
28 lines
803 B
C
28 lines
803 B
C
/*-------------------------------------------------------------------------
|
|
*
|
|
* schemacmds.h
|
|
* prototypes for schemacmds.c.
|
|
*
|
|
*
|
|
* Portions Copyright (c) 1996-2003, PostgreSQL Global Development Group
|
|
* Portions Copyright (c) 1994, Regents of the University of California
|
|
*
|
|
* $PostgreSQL: pgsql/src/include/commands/schemacmds.h,v 1.6 2003/11/29 22:40:59 pgsql Exp $
|
|
*
|
|
*-------------------------------------------------------------------------
|
|
*/
|
|
|
|
#ifndef SCHEMACMDS_H
|
|
#define SCHEMACMDS_H
|
|
|
|
#include "nodes/parsenodes.h"
|
|
|
|
extern void CreateSchemaCommand(CreateSchemaStmt *parsetree);
|
|
|
|
extern void RemoveSchema(List *names, DropBehavior behavior);
|
|
extern void RemoveSchemaById(Oid schemaOid);
|
|
|
|
extern void RenameSchema(const char *oldname, const char *newname);
|
|
|
|
#endif /* SCHEMACMDS_H */
|