mirror of
https://git.postgresql.org/git/postgresql.git
synced 2026-02-17 03:47:01 +08:00
Switch to 2.1 version of pg_bsd_indent. This formats multiline function declarations "correctly", that is with additional lines of parameter declarations indented to match where the first line's left parenthesis is. Discussion: https://postgr.es/m/CAEepm=0P3FeTXRcU5B2W3jv3PgRVZ-kGUXLGfd42FFhUROO3ug@mail.gmail.com
32 lines
919 B
C
32 lines
919 B
C
/*-------------------------------------------------------------------------
|
|
*
|
|
* createas.h
|
|
* prototypes for createas.c.
|
|
*
|
|
*
|
|
* Portions Copyright (c) 1996-2019, 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 "catalog/objectaddress.h"
|
|
#include "nodes/params.h"
|
|
#include "nodes/parsenodes.h"
|
|
#include "tcop/dest.h"
|
|
#include "utils/queryenvironment.h"
|
|
|
|
|
|
extern ObjectAddress ExecCreateTableAs(CreateTableAsStmt *stmt, const char *queryString,
|
|
ParamListInfo params, QueryEnvironment *queryEnv, char *completionTag);
|
|
|
|
extern int GetIntoRelEFlags(IntoClause *intoClause);
|
|
|
|
extern DestReceiver *CreateIntoRelDestReceiver(IntoClause *intoClause);
|
|
|
|
#endif /* CREATEAS_H */
|