diff options
Diffstat (limited to 'src/include/commands/schemacmds.h')
-rw-r--r-- | src/include/commands/schemacmds.h | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/src/include/commands/schemacmds.h b/src/include/commands/schemacmds.h new file mode 100644 index 00000000000..6adf9a4517e --- /dev/null +++ b/src/include/commands/schemacmds.h @@ -0,0 +1,22 @@ +/*------------------------------------------------------------------------- + * + * schemacmds.h + * prototypes for schemacmds.c. + * + * + * Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group + * Portions Copyright (c) 1994, Regents of the University of California + * + * $Id: schemacmds.h,v 1.1 2002/04/15 05:22:04 tgl Exp $ + * + *------------------------------------------------------------------------- + */ + +#ifndef SCHEMACMDS_H +#define SCHEMACMDS_H + +#include "nodes/parsenodes.h" + +extern void CreateSchemaCommand(CreateSchemaStmt *parsetree); + +#endif /* SCHEMACMDS_H */ |