diff options
Diffstat (limited to 'src/include/commands/createas.h')
-rw-r--r-- | src/include/commands/createas.h | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/src/include/commands/createas.h b/src/include/commands/createas.h new file mode 100644 index 00000000000..ed65ccd8ee3 --- /dev/null +++ b/src/include/commands/createas.h @@ -0,0 +1,29 @@ +/*------------------------------------------------------------------------- + * + * createas.h + * prototypes for createas.c. + * + * + * Portions Copyright (c) 1996-2012, PostgreSQL Global Development Group + * Portions Copyright (c) 1994, Regents of the University of California + * + * src/include/commands/createas.h + * + *------------------------------------------------------------------------- + */ +#ifndef CREATEAS_H +#define CREATEAS_H + +#include "nodes/params.h" +#include "nodes/parsenodes.h" +#include "tcop/dest.h" + + +extern void ExecCreateTableAs(CreateTableAsStmt *stmt, const char *queryString, + ParamListInfo params, char *completionTag); + +extern int GetIntoRelEFlags(IntoClause *intoClause); + +extern DestReceiver *CreateIntoRelDestReceiver(IntoClause *intoClause); + +#endif /* CREATEAS_H */ |