]> granicus.if.org Git - postgresql/blob - src/include/nodes/parsenodes.h
Improve ALTER DOMAIN / DROP CONSTRAINT with nonexistent constraint
[postgresql] / src / include / nodes / parsenodes.h
1 /*-------------------------------------------------------------------------
2  *
3  * parsenodes.h
4  *        definitions for parse tree nodes
5  *
6  * Many of the node types used in parsetrees include a "location" field.
7  * This is a byte (not character) offset in the original source text, to be
8  * used for positioning an error cursor when there is an error related to
9  * the node.  Access to the original source text is needed to make use of
10  * the location.
11  *
12  *
13  * Portions Copyright (c) 1996-2012, PostgreSQL Global Development Group
14  * Portions Copyright (c) 1994, Regents of the University of California
15  *
16  * src/include/nodes/parsenodes.h
17  *
18  *-------------------------------------------------------------------------
19  */
20 #ifndef PARSENODES_H
21 #define PARSENODES_H
22
23 #include "nodes/bitmapset.h"
24 #include "nodes/primnodes.h"
25 #include "nodes/value.h"
26
27 /* Possible sources of a Query */
28 typedef enum QuerySource
29 {
30         QSRC_ORIGINAL,                          /* original parsetree (explicit query) */
31         QSRC_PARSER,                            /* added by parse analysis (now unused) */
32         QSRC_INSTEAD_RULE,                      /* added by unconditional INSTEAD rule */
33         QSRC_QUAL_INSTEAD_RULE,         /* added by conditional INSTEAD rule */
34         QSRC_NON_INSTEAD_RULE           /* added by non-INSTEAD rule */
35 } QuerySource;
36
37 /* Sort ordering options for ORDER BY and CREATE INDEX */
38 typedef enum SortByDir
39 {
40         SORTBY_DEFAULT,
41         SORTBY_ASC,
42         SORTBY_DESC,
43         SORTBY_USING                            /* not allowed in CREATE INDEX ... */
44 } SortByDir;
45
46 typedef enum SortByNulls
47 {
48         SORTBY_NULLS_DEFAULT,
49         SORTBY_NULLS_FIRST,
50         SORTBY_NULLS_LAST
51 } SortByNulls;
52
53 /*
54  * Grantable rights are encoded so that we can OR them together in a bitmask.
55  * The present representation of AclItem limits us to 16 distinct rights,
56  * even though AclMode is defined as uint32.  See utils/acl.h.
57  *
58  * Caution: changing these codes breaks stored ACLs, hence forces initdb.
59  */
60 typedef uint32 AclMode;                 /* a bitmask of privilege bits */
61
62 #define ACL_INSERT              (1<<0)  /* for relations */
63 #define ACL_SELECT              (1<<1)
64 #define ACL_UPDATE              (1<<2)
65 #define ACL_DELETE              (1<<3)
66 #define ACL_TRUNCATE    (1<<4)
67 #define ACL_REFERENCES  (1<<5)
68 #define ACL_TRIGGER             (1<<6)
69 #define ACL_EXECUTE             (1<<7)  /* for functions */
70 #define ACL_USAGE               (1<<8)  /* for languages, namespaces, FDWs, and
71                                                                  * servers */
72 #define ACL_CREATE              (1<<9)  /* for namespaces and databases */
73 #define ACL_CREATE_TEMP (1<<10) /* for databases */
74 #define ACL_CONNECT             (1<<11) /* for databases */
75 #define N_ACL_RIGHTS    12              /* 1 plus the last 1<<x */
76 #define ACL_NO_RIGHTS   0
77 /* Currently, SELECT ... FOR UPDATE/FOR SHARE requires UPDATE privileges */
78 #define ACL_SELECT_FOR_UPDATE   ACL_UPDATE
79
80
81 /*****************************************************************************
82  *      Query Tree
83  *****************************************************************************/
84
85 /*
86  * Query -
87  *        Parse analysis turns all statements into a Query tree (via transformStmt)
88  *        for further processing by the rewriter and planner.
89  *
90  *        Utility statements (i.e. non-optimizable statements) have the
91  *        utilityStmt field set, and the Query itself is mostly dummy.
92  *        DECLARE CURSOR is a special case: it is represented like a SELECT,
93  *        but the original DeclareCursorStmt is stored in utilityStmt.
94  *
95  *        Planning converts a Query tree into a Plan tree headed by a PlannedStmt
96  *        node --- the Query structure is not used by the executor.
97  */
98 typedef struct Query
99 {
100         NodeTag         type;
101
102         CmdType         commandType;    /* select|insert|update|delete|utility */
103
104         QuerySource querySource;        /* where did I come from? */
105
106         bool            canSetTag;              /* do I set the command result tag? */
107
108         Node       *utilityStmt;        /* non-null if this is DECLARE CURSOR or a
109                                                                  * non-optimizable statement */
110
111         int                     resultRelation; /* rtable index of target relation for
112                                                                  * INSERT/UPDATE/DELETE; 0 for SELECT */
113
114         IntoClause *intoClause;         /* target for SELECT INTO / CREATE TABLE AS */
115
116         bool            hasAggs;                /* has aggregates in tlist or havingQual */
117         bool            hasWindowFuncs; /* has window functions in tlist */
118         bool            hasSubLinks;    /* has subquery SubLink */
119         bool            hasDistinctOn;  /* distinctClause is from DISTINCT ON */
120         bool            hasRecursive;   /* WITH RECURSIVE was specified */
121         bool            hasModifyingCTE;        /* has INSERT/UPDATE/DELETE in WITH */
122         bool            hasForUpdate;   /* FOR UPDATE or FOR SHARE was specified */
123
124         List       *cteList;            /* WITH list (of CommonTableExpr's) */
125
126         List       *rtable;                     /* list of range table entries */
127         FromExpr   *jointree;           /* table join tree (FROM and WHERE clauses) */
128
129         List       *targetList;         /* target list (of TargetEntry) */
130
131         List       *returningList;      /* return-values list (of TargetEntry) */
132
133         List       *groupClause;        /* a list of SortGroupClause's */
134
135         Node       *havingQual;         /* qualifications applied to groups */
136
137         List       *windowClause;       /* a list of WindowClause's */
138
139         List       *distinctClause; /* a list of SortGroupClause's */
140
141         List       *sortClause;         /* a list of SortGroupClause's */
142
143         Node       *limitOffset;        /* # of result tuples to skip (int8 expr) */
144         Node       *limitCount;         /* # of result tuples to return (int8 expr) */
145
146         List       *rowMarks;           /* a list of RowMarkClause's */
147
148         Node       *setOperations;      /* set-operation tree if this is top level of
149                                                                  * a UNION/INTERSECT/EXCEPT query */
150
151         List       *constraintDeps; /* a list of pg_constraint OIDs that the query
152                                                                  * depends on to be semantically valid */
153 } Query;
154
155
156 /****************************************************************************
157  *      Supporting data structures for Parse Trees
158  *
159  *      Most of these node types appear in raw parsetrees output by the grammar,
160  *      and get transformed to something else by the analyzer.  A few of them
161  *      are used as-is in transformed querytrees.
162  ****************************************************************************/
163
164 /*
165  * TypeName - specifies a type in definitions
166  *
167  * For TypeName structures generated internally, it is often easier to
168  * specify the type by OID than by name.  If "names" is NIL then the
169  * actual type OID is given by typeOid, otherwise typeOid is unused.
170  * Similarly, if "typmods" is NIL then the actual typmod is expected to
171  * be prespecified in typemod, otherwise typemod is unused.
172  *
173  * If pct_type is TRUE, then names is actually a field name and we look up
174  * the type of that field.      Otherwise (the normal case), names is a type
175  * name possibly qualified with schema and database name.
176  */
177 typedef struct TypeName
178 {
179         NodeTag         type;
180         List       *names;                      /* qualified name (list of Value strings) */
181         Oid                     typeOid;                /* type identified by OID */
182         bool            setof;                  /* is a set? */
183         bool            pct_type;               /* %TYPE specified? */
184         List       *typmods;            /* type modifier expression(s) */
185         int32           typemod;                /* prespecified type modifier */
186         List       *arrayBounds;        /* array bounds */
187         int                     location;               /* token location, or -1 if unknown */
188 } TypeName;
189
190 /*
191  * ColumnRef - specifies a reference to a column, or possibly a whole tuple
192  *
193  * The "fields" list must be nonempty.  It can contain string Value nodes
194  * (representing names) and A_Star nodes (representing occurrence of a '*').
195  * Currently, A_Star must appear only as the last list element --- the grammar
196  * is responsible for enforcing this!
197  *
198  * Note: any array subscripting or selection of fields from composite columns
199  * is represented by an A_Indirection node above the ColumnRef.  However,
200  * for simplicity in the normal case, initial field selection from a table
201  * name is represented within ColumnRef and not by adding A_Indirection.
202  */
203 typedef struct ColumnRef
204 {
205         NodeTag         type;
206         List       *fields;                     /* field names (Value strings) or A_Star */
207         int                     location;               /* token location, or -1 if unknown */
208 } ColumnRef;
209
210 /*
211  * ParamRef - specifies a $n parameter reference
212  */
213 typedef struct ParamRef
214 {
215         NodeTag         type;
216         int                     number;                 /* the number of the parameter */
217         int                     location;               /* token location, or -1 if unknown */
218 } ParamRef;
219
220 /*
221  * A_Expr - infix, prefix, and postfix expressions
222  */
223 typedef enum A_Expr_Kind
224 {
225         AEXPR_OP,                                       /* normal operator */
226         AEXPR_AND,                                      /* booleans - name field is unused */
227         AEXPR_OR,
228         AEXPR_NOT,
229         AEXPR_OP_ANY,                           /* scalar op ANY (array) */
230         AEXPR_OP_ALL,                           /* scalar op ALL (array) */
231         AEXPR_DISTINCT,                         /* IS DISTINCT FROM - name must be "=" */
232         AEXPR_NULLIF,                           /* NULLIF - name must be "=" */
233         AEXPR_OF,                                       /* IS [NOT] OF - name must be "=" or "<>" */
234         AEXPR_IN                                        /* [NOT] IN - name must be "=" or "<>" */
235 } A_Expr_Kind;
236
237 typedef struct A_Expr
238 {
239         NodeTag         type;
240         A_Expr_Kind kind;                       /* see above */
241         List       *name;                       /* possibly-qualified name of operator */
242         Node       *lexpr;                      /* left argument, or NULL if none */
243         Node       *rexpr;                      /* right argument, or NULL if none */
244         int                     location;               /* token location, or -1 if unknown */
245 } A_Expr;
246
247 /*
248  * A_Const - a literal constant
249  */
250 typedef struct A_Const
251 {
252         NodeTag         type;
253         Value           val;                    /* value (includes type info, see value.h) */
254         int                     location;               /* token location, or -1 if unknown */
255 } A_Const;
256
257 /*
258  * TypeCast - a CAST expression
259  */
260 typedef struct TypeCast
261 {
262         NodeTag         type;
263         Node       *arg;                        /* the expression being casted */
264         TypeName   *typeName;           /* the target type */
265         int                     location;               /* token location, or -1 if unknown */
266 } TypeCast;
267
268 /*
269  * CollateClause - a COLLATE expression
270  */
271 typedef struct CollateClause
272 {
273         NodeTag         type;
274         Node       *arg;                        /* input expression */
275         List       *collname;           /* possibly-qualified collation name */
276         int                     location;               /* token location, or -1 if unknown */
277 } CollateClause;
278
279 /*
280  * FuncCall - a function or aggregate invocation
281  *
282  * agg_order (if not NIL) indicates we saw 'foo(... ORDER BY ...)'.
283  * agg_star indicates we saw a 'foo(*)' construct, while agg_distinct
284  * indicates we saw 'foo(DISTINCT ...)'.  In any of these cases, the
285  * construct *must* be an aggregate call.  Otherwise, it might be either an
286  * aggregate or some other kind of function.  However, if OVER is present
287  * it had better be an aggregate or window function.
288  */
289 typedef struct FuncCall
290 {
291         NodeTag         type;
292         List       *funcname;           /* qualified name of function */
293         List       *args;                       /* the arguments (list of exprs) */
294         List       *agg_order;          /* ORDER BY (list of SortBy) */
295         bool            agg_star;               /* argument was really '*' */
296         bool            agg_distinct;   /* arguments were labeled DISTINCT */
297         bool            func_variadic;  /* last argument was labeled VARIADIC */
298         struct WindowDef *over;         /* OVER clause, if any */
299         int                     location;               /* token location, or -1 if unknown */
300 } FuncCall;
301
302 /*
303  * A_Star - '*' representing all columns of a table or compound field
304  *
305  * This can appear within ColumnRef.fields, A_Indirection.indirection, and
306  * ResTarget.indirection lists.
307  */
308 typedef struct A_Star
309 {
310         NodeTag         type;
311 } A_Star;
312
313 /*
314  * A_Indices - array subscript or slice bounds ([lidx:uidx] or [uidx])
315  */
316 typedef struct A_Indices
317 {
318         NodeTag         type;
319         Node       *lidx;                       /* NULL if it's a single subscript */
320         Node       *uidx;
321 } A_Indices;
322
323 /*
324  * A_Indirection - select a field and/or array element from an expression
325  *
326  * The indirection list can contain A_Indices nodes (representing
327  * subscripting), string Value nodes (representing field selection --- the
328  * string value is the name of the field to select), and A_Star nodes
329  * (representing selection of all fields of a composite type).
330  * For example, a complex selection operation like
331  *                              (foo).field1[42][7].field2
332  * would be represented with a single A_Indirection node having a 4-element
333  * indirection list.
334  *
335  * Currently, A_Star must appear only as the last list element --- the grammar
336  * is responsible for enforcing this!
337  */
338 typedef struct A_Indirection
339 {
340         NodeTag         type;
341         Node       *arg;                        /* the thing being selected from */
342         List       *indirection;        /* subscripts and/or field names and/or * */
343 } A_Indirection;
344
345 /*
346  * A_ArrayExpr - an ARRAY[] construct
347  */
348 typedef struct A_ArrayExpr
349 {
350         NodeTag         type;
351         List       *elements;           /* array element expressions */
352         int                     location;               /* token location, or -1 if unknown */
353 } A_ArrayExpr;
354
355 /*
356  * ResTarget -
357  *        result target (used in target list of pre-transformed parse trees)
358  *
359  * In a SELECT target list, 'name' is the column label from an
360  * 'AS ColumnLabel' clause, or NULL if there was none, and 'val' is the
361  * value expression itself.  The 'indirection' field is not used.
362  *
363  * INSERT uses ResTarget in its target-column-names list.  Here, 'name' is
364  * the name of the destination column, 'indirection' stores any subscripts
365  * attached to the destination, and 'val' is not used.
366  *
367  * In an UPDATE target list, 'name' is the name of the destination column,
368  * 'indirection' stores any subscripts attached to the destination, and
369  * 'val' is the expression to assign.
370  *
371  * See A_Indirection for more info about what can appear in 'indirection'.
372  */
373 typedef struct ResTarget
374 {
375         NodeTag         type;
376         char       *name;                       /* column name or NULL */
377         List       *indirection;        /* subscripts, field names, and '*', or NIL */
378         Node       *val;                        /* the value expression to compute or assign */
379         int                     location;               /* token location, or -1 if unknown */
380 } ResTarget;
381
382 /*
383  * SortBy - for ORDER BY clause
384  */
385 typedef struct SortBy
386 {
387         NodeTag         type;
388         Node       *node;                       /* expression to sort on */
389         SortByDir       sortby_dir;             /* ASC/DESC/USING/default */
390         SortByNulls sortby_nulls;       /* NULLS FIRST/LAST */
391         List       *useOp;                      /* name of op to use, if SORTBY_USING */
392         int                     location;               /* operator location, or -1 if none/unknown */
393 } SortBy;
394
395 /*
396  * WindowDef - raw representation of WINDOW and OVER clauses
397  *
398  * For entries in a WINDOW list, "name" is the window name being defined.
399  * For OVER clauses, we use "name" for the "OVER window" syntax, or "refname"
400  * for the "OVER (window)" syntax, which is subtly different --- the latter
401  * implies overriding the window frame clause.
402  */
403 typedef struct WindowDef
404 {
405         NodeTag         type;
406         char       *name;                       /* window's own name */
407         char       *refname;            /* referenced window name, if any */
408         List       *partitionClause;    /* PARTITION BY expression list */
409         List       *orderClause;        /* ORDER BY (list of SortBy) */
410         int                     frameOptions;   /* frame_clause options, see below */
411         Node       *startOffset;        /* expression for starting bound, if any */
412         Node       *endOffset;          /* expression for ending bound, if any */
413         int                     location;               /* parse location, or -1 if none/unknown */
414 } WindowDef;
415
416 /*
417  * frameOptions is an OR of these bits.  The NONDEFAULT and BETWEEN bits are
418  * used so that ruleutils.c can tell which properties were specified and
419  * which were defaulted; the correct behavioral bits must be set either way.
420  * The START_foo and END_foo options must come in pairs of adjacent bits for
421  * the convenience of gram.y, even though some of them are useless/invalid.
422  * We will need more bits (and fields) to cover the full SQL:2008 option set.
423  */
424 #define FRAMEOPTION_NONDEFAULT                                  0x00001 /* any specified? */
425 #define FRAMEOPTION_RANGE                                               0x00002 /* RANGE behavior */
426 #define FRAMEOPTION_ROWS                                                0x00004 /* ROWS behavior */
427 #define FRAMEOPTION_BETWEEN                                             0x00008 /* BETWEEN given? */
428 #define FRAMEOPTION_START_UNBOUNDED_PRECEDING   0x00010 /* start is U. P. */
429 #define FRAMEOPTION_END_UNBOUNDED_PRECEDING             0x00020 /* (disallowed) */
430 #define FRAMEOPTION_START_UNBOUNDED_FOLLOWING   0x00040 /* (disallowed) */
431 #define FRAMEOPTION_END_UNBOUNDED_FOLLOWING             0x00080 /* end is U. F. */
432 #define FRAMEOPTION_START_CURRENT_ROW                   0x00100 /* start is C. R. */
433 #define FRAMEOPTION_END_CURRENT_ROW                             0x00200 /* end is C. R. */
434 #define FRAMEOPTION_START_VALUE_PRECEDING               0x00400 /* start is V. P. */
435 #define FRAMEOPTION_END_VALUE_PRECEDING                 0x00800 /* end is V. P. */
436 #define FRAMEOPTION_START_VALUE_FOLLOWING               0x01000 /* start is V. F. */
437 #define FRAMEOPTION_END_VALUE_FOLLOWING                 0x02000 /* end is V. F. */
438
439 #define FRAMEOPTION_START_VALUE \
440         (FRAMEOPTION_START_VALUE_PRECEDING | FRAMEOPTION_START_VALUE_FOLLOWING)
441 #define FRAMEOPTION_END_VALUE \
442         (FRAMEOPTION_END_VALUE_PRECEDING | FRAMEOPTION_END_VALUE_FOLLOWING)
443
444 #define FRAMEOPTION_DEFAULTS \
445         (FRAMEOPTION_RANGE | FRAMEOPTION_START_UNBOUNDED_PRECEDING | \
446          FRAMEOPTION_END_CURRENT_ROW)
447
448 /*
449  * RangeSubselect - subquery appearing in a FROM clause
450  */
451 typedef struct RangeSubselect
452 {
453         NodeTag         type;
454         Node       *subquery;           /* the untransformed sub-select clause */
455         Alias      *alias;                      /* table alias & optional column aliases */
456 } RangeSubselect;
457
458 /*
459  * RangeFunction - function call appearing in a FROM clause
460  */
461 typedef struct RangeFunction
462 {
463         NodeTag         type;
464         Node       *funccallnode;       /* untransformed function call tree */
465         Alias      *alias;                      /* table alias & optional column aliases */
466         List       *coldeflist;         /* list of ColumnDef nodes to describe result
467                                                                  * of function returning RECORD */
468 } RangeFunction;
469
470 /*
471  * ColumnDef - column definition (used in various creates)
472  *
473  * If the column has a default value, we may have the value expression
474  * in either "raw" form (an untransformed parse tree) or "cooked" form
475  * (a post-parse-analysis, executable expression tree), depending on
476  * how this ColumnDef node was created (by parsing, or by inheritance
477  * from an existing relation).  We should never have both in the same node!
478  *
479  * Similarly, we may have a COLLATE specification in either raw form
480  * (represented as a CollateClause with arg==NULL) or cooked form
481  * (the collation's OID).
482  *
483  * The constraints list may contain a CONSTR_DEFAULT item in a raw
484  * parsetree produced by gram.y, but transformCreateStmt will remove
485  * the item and set raw_default instead.  CONSTR_DEFAULT items
486  * should not appear in any subsequent processing.
487  */
488 typedef struct ColumnDef
489 {
490         NodeTag         type;
491         char       *colname;            /* name of column */
492         TypeName   *typeName;           /* type of column */
493         int                     inhcount;               /* number of times column is inherited */
494         bool            is_local;               /* column has local (non-inherited) def'n */
495         bool            is_not_null;    /* NOT NULL constraint specified? */
496         bool            is_from_type;   /* column definition came from table type */
497         char            storage;                /* attstorage setting, or 0 for default */
498         Node       *raw_default;        /* default value (untransformed parse tree) */
499         Node       *cooked_default; /* default value (transformed expr tree) */
500         CollateClause *collClause;      /* untransformed COLLATE spec, if any */
501         Oid                     collOid;                /* collation OID (InvalidOid if not set) */
502         List       *constraints;        /* other constraints on column */
503         List       *fdwoptions;         /* per-column FDW options */
504 } ColumnDef;
505
506 /*
507  * inhRelation - Relation a CREATE TABLE is to inherit attributes of
508  */
509 typedef struct InhRelation
510 {
511         NodeTag         type;
512         RangeVar   *relation;
513         bits32          options;                /* OR of CreateStmtLikeOption flags */
514 } InhRelation;
515
516 typedef enum CreateStmtLikeOption
517 {
518         CREATE_TABLE_LIKE_DEFAULTS = 1 << 0,
519         CREATE_TABLE_LIKE_CONSTRAINTS = 1 << 1,
520         CREATE_TABLE_LIKE_INDEXES = 1 << 2,
521         CREATE_TABLE_LIKE_STORAGE = 1 << 3,
522         CREATE_TABLE_LIKE_COMMENTS = 1 << 4,
523         CREATE_TABLE_LIKE_ALL = 0x7FFFFFFF
524 } CreateStmtLikeOption;
525
526 /*
527  * IndexElem - index parameters (used in CREATE INDEX)
528  *
529  * For a plain index attribute, 'name' is the name of the table column to
530  * index, and 'expr' is NULL.  For an index expression, 'name' is NULL and
531  * 'expr' is the expression tree.
532  */
533 typedef struct IndexElem
534 {
535         NodeTag         type;
536         char       *name;                       /* name of attribute to index, or NULL */
537         Node       *expr;                       /* expression to index, or NULL */
538         char       *indexcolname;       /* name for index column; NULL = default */
539         List       *collation;          /* name of collation; NIL = default */
540         List       *opclass;            /* name of desired opclass; NIL = default */
541         SortByDir       ordering;               /* ASC/DESC/default */
542         SortByNulls nulls_ordering; /* FIRST/LAST/default */
543 } IndexElem;
544
545 /*
546  * DefElem - a generic "name = value" option definition
547  *
548  * In some contexts the name can be qualified.  Also, certain SQL commands
549  * allow a SET/ADD/DROP action to be attached to option settings, so it's
550  * convenient to carry a field for that too.  (Note: currently, it is our
551  * practice that the grammar allows namespace and action only in statements
552  * where they are relevant; C code can just ignore those fields in other
553  * statements.)
554  */
555 typedef enum DefElemAction
556 {
557         DEFELEM_UNSPEC,                         /* no action given */
558         DEFELEM_SET,
559         DEFELEM_ADD,
560         DEFELEM_DROP
561 } DefElemAction;
562
563 typedef struct DefElem
564 {
565         NodeTag         type;
566         char       *defnamespace;       /* NULL if unqualified name */
567         char       *defname;
568         Node       *arg;                        /* a (Value *) or a (TypeName *) */
569         DefElemAction defaction;        /* unspecified action, or SET/ADD/DROP */
570 } DefElem;
571
572 /*
573  * LockingClause - raw representation of FOR UPDATE/SHARE options
574  *
575  * Note: lockedRels == NIL means "all relations in query".      Otherwise it
576  * is a list of RangeVar nodes.  (We use RangeVar mainly because it carries
577  * a location field --- currently, parse analysis insists on unqualified
578  * names in LockingClause.)
579  */
580 typedef struct LockingClause
581 {
582         NodeTag         type;
583         List       *lockedRels;         /* FOR UPDATE or FOR SHARE relations */
584         bool            forUpdate;              /* true = FOR UPDATE, false = FOR SHARE */
585         bool            noWait;                 /* NOWAIT option */
586 } LockingClause;
587
588 /*
589  * XMLSERIALIZE (in raw parse tree only)
590  */
591 typedef struct XmlSerialize
592 {
593         NodeTag         type;
594         XmlOptionType xmloption;        /* DOCUMENT or CONTENT */
595         Node       *expr;
596         TypeName   *typeName;
597         int                     location;               /* token location, or -1 if unknown */
598 } XmlSerialize;
599
600
601 /****************************************************************************
602  *      Nodes for a Query tree
603  ****************************************************************************/
604
605 /*--------------------
606  * RangeTblEntry -
607  *        A range table is a List of RangeTblEntry nodes.
608  *
609  *        A range table entry may represent a plain relation, a sub-select in
610  *        FROM, or the result of a JOIN clause.  (Only explicit JOIN syntax
611  *        produces an RTE, not the implicit join resulting from multiple FROM
612  *        items.  This is because we only need the RTE to deal with SQL features
613  *        like outer joins and join-output-column aliasing.)  Other special
614  *        RTE types also exist, as indicated by RTEKind.
615  *
616  *        Note that we consider RTE_RELATION to cover anything that has a pg_class
617  *        entry.  relkind distinguishes the sub-cases.
618  *
619  *        alias is an Alias node representing the AS alias-clause attached to the
620  *        FROM expression, or NULL if no clause.
621  *
622  *        eref is the table reference name and column reference names (either
623  *        real or aliases).  Note that system columns (OID etc) are not included
624  *        in the column list.
625  *        eref->aliasname is required to be present, and should generally be used
626  *        to identify the RTE for error messages etc.
627  *
628  *        In RELATION RTEs, the colnames in both alias and eref are indexed by
629  *        physical attribute number; this means there must be colname entries for
630  *        dropped columns.      When building an RTE we insert empty strings ("") for
631  *        dropped columns.      Note however that a stored rule may have nonempty
632  *        colnames for columns dropped since the rule was created (and for that
633  *        matter the colnames might be out of date due to column renamings).
634  *        The same comments apply to FUNCTION RTEs when the function's return type
635  *        is a named composite type.
636  *
637  *        In JOIN RTEs, the colnames in both alias and eref are one-to-one with
638  *        joinaliasvars entries.  A JOIN RTE will omit columns of its inputs when
639  *        those columns are known to be dropped at parse time.  Again, however,
640  *        a stored rule might contain entries for columns dropped since the rule
641  *        was created.  (This is only possible for columns not actually referenced
642  *        in the rule.)  When loading a stored rule, we replace the joinaliasvars
643  *        items for any such columns with NULL Consts.  (We can't simply delete
644  *        them from the joinaliasvars list, because that would affect the attnums
645  *        of Vars referencing the rest of the list.)
646  *
647  *        inh is TRUE for relation references that should be expanded to include
648  *        inheritance children, if the rel has any.  This *must* be FALSE for
649  *        RTEs other than RTE_RELATION entries.
650  *
651  *        inFromCl marks those range variables that are listed in the FROM clause.
652  *        It's false for RTEs that are added to a query behind the scenes, such
653  *        as the NEW and OLD variables for a rule, or the subqueries of a UNION.
654  *        This flag is not used anymore during parsing, since the parser now uses
655  *        a separate "namespace" data structure to control visibility, but it is
656  *        needed by ruleutils.c to determine whether RTEs should be shown in
657  *        decompiled queries.
658  *
659  *        requiredPerms and checkAsUser specify run-time access permissions
660  *        checks to be performed at query startup.      The user must have *all*
661  *        of the permissions that are OR'd together in requiredPerms (zero
662  *        indicates no permissions checking).  If checkAsUser is not zero,
663  *        then do the permissions checks using the access rights of that user,
664  *        not the current effective user ID.  (This allows rules to act as
665  *        setuid gateways.)  Permissions checks only apply to RELATION RTEs.
666  *
667  *        For SELECT/INSERT/UPDATE permissions, if the user doesn't have
668  *        table-wide permissions then it is sufficient to have the permissions
669  *        on all columns identified in selectedCols (for SELECT) and/or
670  *        modifiedCols (for INSERT/UPDATE; we can tell which from the query type).
671  *        selectedCols and modifiedCols are bitmapsets, which cannot have negative
672  *        integer members, so we subtract FirstLowInvalidHeapAttributeNumber from
673  *        column numbers before storing them in these fields.  A whole-row Var
674  *        reference is represented by setting the bit for InvalidAttrNumber.
675  *--------------------
676  */
677 typedef enum RTEKind
678 {
679         RTE_RELATION,                           /* ordinary relation reference */
680         RTE_SUBQUERY,                           /* subquery in FROM */
681         RTE_JOIN,                                       /* join */
682         RTE_FUNCTION,                           /* function in FROM */
683         RTE_VALUES,                                     /* VALUES (<exprlist>), (<exprlist>), ... */
684         RTE_CTE                                         /* common table expr (WITH list element) */
685 } RTEKind;
686
687 typedef struct RangeTblEntry
688 {
689         NodeTag         type;
690
691         RTEKind         rtekind;                /* see above */
692
693         /*
694          * XXX the fields applicable to only some rte kinds should be merged into
695          * a union.  I didn't do this yet because the diffs would impact a lot of
696          * code that is being actively worked on.  FIXME someday.
697          */
698
699         /*
700          * Fields valid for a plain relation RTE (else zero):
701          */
702         Oid                     relid;                  /* OID of the relation */
703         char            relkind;                /* relation kind (see pg_class.relkind) */
704
705         /*
706          * Fields valid for a subquery RTE (else NULL):
707          */
708         Query      *subquery;           /* the sub-query */
709         bool            security_barrier;       /* subquery from security_barrier view */
710
711         /*
712          * Fields valid for a join RTE (else NULL/zero):
713          *
714          * joinaliasvars is a list of Vars or COALESCE expressions corresponding
715          * to the columns of the join result.  An alias Var referencing column K
716          * of the join result can be replaced by the K'th element of joinaliasvars
717          * --- but to simplify the task of reverse-listing aliases correctly, we
718          * do not do that until planning time.  In a Query loaded from a stored
719          * rule, it is also possible for joinaliasvars items to be NULL Consts,
720          * denoting columns dropped since the rule was made.
721          */
722         JoinType        jointype;               /* type of join */
723         List       *joinaliasvars;      /* list of alias-var expansions */
724
725         /*
726          * Fields valid for a function RTE (else NULL):
727          *
728          * If the function returns RECORD, funccoltypes lists the column types
729          * declared in the RTE's column type specification, funccoltypmods lists
730          * their declared typmods, funccolcollations their collations.  Otherwise,
731          * those fields are NIL.
732          */
733         Node       *funcexpr;           /* expression tree for func call */
734         List       *funccoltypes;       /* OID list of column type OIDs */
735         List       *funccoltypmods; /* integer list of column typmods */
736         List       *funccolcollations;          /* OID list of column collation OIDs */
737
738         /*
739          * Fields valid for a values RTE (else NIL):
740          */
741         List       *values_lists;       /* list of expression lists */
742         List       *values_collations;          /* OID list of column collation OIDs */
743
744         /*
745          * Fields valid for a CTE RTE (else NULL/zero):
746          */
747         char       *ctename;            /* name of the WITH list item */
748         Index           ctelevelsup;    /* number of query levels up */
749         bool            self_reference; /* is this a recursive self-reference? */
750         List       *ctecoltypes;        /* OID list of column type OIDs */
751         List       *ctecoltypmods;      /* integer list of column typmods */
752         List       *ctecolcollations;           /* OID list of column collation OIDs */
753
754         /*
755          * Fields valid in all RTEs:
756          */
757         Alias      *alias;                      /* user-written alias clause, if any */
758         Alias      *eref;                       /* expanded reference names */
759         bool            inh;                    /* inheritance requested? */
760         bool            inFromCl;               /* present in FROM clause? */
761         AclMode         requiredPerms;  /* bitmask of required access permissions */
762         Oid                     checkAsUser;    /* if valid, check access as this role */
763         Bitmapset  *selectedCols;       /* columns needing SELECT permission */
764         Bitmapset  *modifiedCols;       /* columns needing INSERT/UPDATE permission */
765 } RangeTblEntry;
766
767 /*
768  * SortGroupClause -
769  *              representation of ORDER BY, GROUP BY, PARTITION BY,
770  *              DISTINCT, DISTINCT ON items
771  *
772  * You might think that ORDER BY is only interested in defining ordering,
773  * and GROUP/DISTINCT are only interested in defining equality.  However,
774  * one way to implement grouping is to sort and then apply a "uniq"-like
775  * filter.      So it's also interesting to keep track of possible sort operators
776  * for GROUP/DISTINCT, and in particular to try to sort for the grouping
777  * in a way that will also yield a requested ORDER BY ordering.  So we need
778  * to be able to compare ORDER BY and GROUP/DISTINCT lists, which motivates
779  * the decision to give them the same representation.
780  *
781  * tleSortGroupRef must match ressortgroupref of exactly one entry of the
782  *              query's targetlist; that is the expression to be sorted or grouped by.
783  * eqop is the OID of the equality operator.
784  * sortop is the OID of the ordering operator (a "<" or ">" operator),
785  *              or InvalidOid if not available.
786  * nulls_first means about what you'd expect.  If sortop is InvalidOid
787  *              then nulls_first is meaningless and should be set to false.
788  * hashable is TRUE if eqop is hashable (note this condition also depends
789  *              on the datatype of the input expression).
790  *
791  * In an ORDER BY item, all fields must be valid.  (The eqop isn't essential
792  * here, but it's cheap to get it along with the sortop, and requiring it
793  * to be valid eases comparisons to grouping items.)  Note that this isn't
794  * actually enough information to determine an ordering: if the sortop is
795  * collation-sensitive, a collation OID is needed too.  We don't store the
796  * collation in SortGroupClause because it's not available at the time the
797  * parser builds the SortGroupClause; instead, consult the exposed collation
798  * of the referenced targetlist expression to find out what it is.
799  *
800  * In a grouping item, eqop must be valid.      If the eqop is a btree equality
801  * operator, then sortop should be set to a compatible ordering operator.
802  * We prefer to set eqop/sortop/nulls_first to match any ORDER BY item that
803  * the query presents for the same tlist item.  If there is none, we just
804  * use the default ordering op for the datatype.
805  *
806  * If the tlist item's type has a hash opclass but no btree opclass, then
807  * we will set eqop to the hash equality operator, sortop to InvalidOid,
808  * and nulls_first to false.  A grouping item of this kind can only be
809  * implemented by hashing, and of course it'll never match an ORDER BY item.
810  *
811  * The hashable flag is provided since we generally have the requisite
812  * information readily available when the SortGroupClause is constructed,
813  * and it's relatively expensive to get it again later.  Note there is no
814  * need for a "sortable" flag since OidIsValid(sortop) serves the purpose.
815  *
816  * A query might have both ORDER BY and DISTINCT (or DISTINCT ON) clauses.
817  * In SELECT DISTINCT, the distinctClause list is as long or longer than the
818  * sortClause list, while in SELECT DISTINCT ON it's typically shorter.
819  * The two lists must match up to the end of the shorter one --- the parser
820  * rearranges the distinctClause if necessary to make this true.  (This
821  * restriction ensures that only one sort step is needed to both satisfy the
822  * ORDER BY and set up for the Unique step.  This is semantically necessary
823  * for DISTINCT ON, and presents no real drawback for DISTINCT.)
824  */
825 typedef struct SortGroupClause
826 {
827         NodeTag         type;
828         Index           tleSortGroupRef;        /* reference into targetlist */
829         Oid                     eqop;                   /* the equality operator ('=' op) */
830         Oid                     sortop;                 /* the ordering operator ('<' op), or 0 */
831         bool            nulls_first;    /* do NULLs come before normal values? */
832         bool            hashable;               /* can eqop be implemented by hashing? */
833 } SortGroupClause;
834
835 /*
836  * WindowClause -
837  *              transformed representation of WINDOW and OVER clauses
838  *
839  * A parsed Query's windowClause list contains these structs.  "name" is set
840  * if the clause originally came from WINDOW, and is NULL if it originally
841  * was an OVER clause (but note that we collapse out duplicate OVERs).
842  * partitionClause and orderClause are lists of SortGroupClause structs.
843  * winref is an ID number referenced by WindowFunc nodes; it must be unique
844  * among the members of a Query's windowClause list.
845  * When refname isn't null, the partitionClause is always copied from there;
846  * the orderClause might or might not be copied (see copiedOrder); the framing
847  * options are never copied, per spec.
848  */
849 typedef struct WindowClause
850 {
851         NodeTag         type;
852         char       *name;                       /* window name (NULL in an OVER clause) */
853         char       *refname;            /* referenced window name, if any */
854         List       *partitionClause;    /* PARTITION BY list */
855         List       *orderClause;        /* ORDER BY list */
856         int                     frameOptions;   /* frame_clause options, see WindowDef */
857         Node       *startOffset;        /* expression for starting bound, if any */
858         Node       *endOffset;          /* expression for ending bound, if any */
859         Index           winref;                 /* ID referenced by window functions */
860         bool            copiedOrder;    /* did we copy orderClause from refname? */
861 } WindowClause;
862
863 /*
864  * RowMarkClause -
865  *         parser output representation of FOR UPDATE/SHARE clauses
866  *
867  * Query.rowMarks contains a separate RowMarkClause node for each relation
868  * identified as a FOR UPDATE/SHARE target.  If FOR UPDATE/SHARE is applied
869  * to a subquery, we generate RowMarkClauses for all normal and subquery rels
870  * in the subquery, but they are marked pushedDown = true to distinguish them
871  * from clauses that were explicitly written at this query level.  Also,
872  * Query.hasForUpdate tells whether there were explicit FOR UPDATE/SHARE
873  * clauses in the current query level.
874  */
875 typedef struct RowMarkClause
876 {
877         NodeTag         type;
878         Index           rti;                    /* range table index of target relation */
879         bool            forUpdate;              /* true = FOR UPDATE, false = FOR SHARE */
880         bool            noWait;                 /* NOWAIT option */
881         bool            pushedDown;             /* pushed down from higher query level? */
882 } RowMarkClause;
883
884 /*
885  * WithClause -
886  *         representation of WITH clause
887  *
888  * Note: WithClause does not propagate into the Query representation;
889  * but CommonTableExpr does.
890  */
891 typedef struct WithClause
892 {
893         NodeTag         type;
894         List       *ctes;                       /* list of CommonTableExprs */
895         bool            recursive;              /* true = WITH RECURSIVE */
896         int                     location;               /* token location, or -1 if unknown */
897 } WithClause;
898
899 /*
900  * CommonTableExpr -
901  *         representation of WITH list element
902  *
903  * We don't currently support the SEARCH or CYCLE clause.
904  */
905 typedef struct CommonTableExpr
906 {
907         NodeTag         type;
908         char       *ctename;            /* query name (never qualified) */
909         List       *aliascolnames;      /* optional list of column names */
910         /* SelectStmt/InsertStmt/etc before parse analysis, Query afterwards: */
911         Node       *ctequery;           /* the CTE's subquery */
912         int                     location;               /* token location, or -1 if unknown */
913         /* These fields are set during parse analysis: */
914         bool            cterecursive;   /* is this CTE actually recursive? */
915         int                     cterefcount;    /* number of RTEs referencing this CTE
916                                                                  * (excluding internal self-references) */
917         List       *ctecolnames;        /* list of output column names */
918         List       *ctecoltypes;        /* OID list of output column type OIDs */
919         List       *ctecoltypmods;      /* integer list of output column typmods */
920         List       *ctecolcollations;           /* OID list of column collation OIDs */
921 } CommonTableExpr;
922
923 /* Convenience macro to get the output tlist of a CTE's query */
924 #define GetCTETargetList(cte) \
925         (AssertMacro(IsA((cte)->ctequery, Query)), \
926          ((Query *) (cte)->ctequery)->commandType == CMD_SELECT ? \
927          ((Query *) (cte)->ctequery)->targetList : \
928          ((Query *) (cte)->ctequery)->returningList)
929
930
931 /*****************************************************************************
932  *              Optimizable Statements
933  *****************************************************************************/
934
935 /* ----------------------
936  *              Insert Statement
937  *
938  * The source expression is represented by SelectStmt for both the
939  * SELECT and VALUES cases.  If selectStmt is NULL, then the query
940  * is INSERT ... DEFAULT VALUES.
941  * ----------------------
942  */
943 typedef struct InsertStmt
944 {
945         NodeTag         type;
946         RangeVar   *relation;           /* relation to insert into */
947         List       *cols;                       /* optional: names of the target columns */
948         Node       *selectStmt;         /* the source SELECT/VALUES, or NULL */
949         List       *returningList;      /* list of expressions to return */
950         WithClause *withClause;         /* WITH clause */
951 } InsertStmt;
952
953 /* ----------------------
954  *              Delete Statement
955  * ----------------------
956  */
957 typedef struct DeleteStmt
958 {
959         NodeTag         type;
960         RangeVar   *relation;           /* relation to delete from */
961         List       *usingClause;        /* optional using clause for more tables */
962         Node       *whereClause;        /* qualifications */
963         List       *returningList;      /* list of expressions to return */
964         WithClause *withClause;         /* WITH clause */
965 } DeleteStmt;
966
967 /* ----------------------
968  *              Update Statement
969  * ----------------------
970  */
971 typedef struct UpdateStmt
972 {
973         NodeTag         type;
974         RangeVar   *relation;           /* relation to update */
975         List       *targetList;         /* the target list (of ResTarget) */
976         Node       *whereClause;        /* qualifications */
977         List       *fromClause;         /* optional from clause for more tables */
978         List       *returningList;      /* list of expressions to return */
979         WithClause *withClause;         /* WITH clause */
980 } UpdateStmt;
981
982 /* ----------------------
983  *              Select Statement
984  *
985  * A "simple" SELECT is represented in the output of gram.y by a single
986  * SelectStmt node; so is a VALUES construct.  A query containing set
987  * operators (UNION, INTERSECT, EXCEPT) is represented by a tree of SelectStmt
988  * nodes, in which the leaf nodes are component SELECTs and the internal nodes
989  * represent UNION, INTERSECT, or EXCEPT operators.  Using the same node
990  * type for both leaf and internal nodes allows gram.y to stick ORDER BY,
991  * LIMIT, etc, clause values into a SELECT statement without worrying
992  * whether it is a simple or compound SELECT.
993  * ----------------------
994  */
995 typedef enum SetOperation
996 {
997         SETOP_NONE = 0,
998         SETOP_UNION,
999         SETOP_INTERSECT,
1000         SETOP_EXCEPT
1001 } SetOperation;
1002
1003 typedef struct SelectStmt
1004 {
1005         NodeTag         type;
1006
1007         /*
1008          * These fields are used only in "leaf" SelectStmts.
1009          */
1010         List       *distinctClause; /* NULL, list of DISTINCT ON exprs, or
1011                                                                  * lcons(NIL,NIL) for all (SELECT DISTINCT) */
1012         IntoClause *intoClause;         /* target for SELECT INTO / CREATE TABLE AS */
1013         List       *targetList;         /* the target list (of ResTarget) */
1014         List       *fromClause;         /* the FROM clause */
1015         Node       *whereClause;        /* WHERE qualification */
1016         List       *groupClause;        /* GROUP BY clauses */
1017         Node       *havingClause;       /* HAVING conditional-expression */
1018         List       *windowClause;       /* WINDOW window_name AS (...), ... */
1019         WithClause *withClause;         /* WITH clause */
1020
1021         /*
1022          * In a "leaf" node representing a VALUES list, the above fields are all
1023          * null, and instead this field is set.  Note that the elements of the
1024          * sublists are just expressions, without ResTarget decoration. Also note
1025          * that a list element can be DEFAULT (represented as a SetToDefault
1026          * node), regardless of the context of the VALUES list. It's up to parse
1027          * analysis to reject that where not valid.
1028          */
1029         List       *valuesLists;        /* untransformed list of expression lists */
1030
1031         /*
1032          * These fields are used in both "leaf" SelectStmts and upper-level
1033          * SelectStmts.
1034          */
1035         List       *sortClause;         /* sort clause (a list of SortBy's) */
1036         Node       *limitOffset;        /* # of result tuples to skip */
1037         Node       *limitCount;         /* # of result tuples to return */
1038         List       *lockingClause;      /* FOR UPDATE (list of LockingClause's) */
1039
1040         /*
1041          * These fields are used only in upper-level SelectStmts.
1042          */
1043         SetOperation op;                        /* type of set op */
1044         bool            all;                    /* ALL specified? */
1045         struct SelectStmt *larg;        /* left child */
1046         struct SelectStmt *rarg;        /* right child */
1047         /* Eventually add fields for CORRESPONDING spec here */
1048 } SelectStmt;
1049
1050
1051 /* ----------------------
1052  *              Set Operation node for post-analysis query trees
1053  *
1054  * After parse analysis, a SELECT with set operations is represented by a
1055  * top-level Query node containing the leaf SELECTs as subqueries in its
1056  * range table.  Its setOperations field shows the tree of set operations,
1057  * with leaf SelectStmt nodes replaced by RangeTblRef nodes, and internal
1058  * nodes replaced by SetOperationStmt nodes.  Information about the output
1059  * column types is added, too.  (Note that the child nodes do not necessarily
1060  * produce these types directly, but we've checked that their output types
1061  * can be coerced to the output column type.)  Also, if it's not UNION ALL,
1062  * information about the types' sort/group semantics is provided in the form
1063  * of a SortGroupClause list (same representation as, eg, DISTINCT).
1064  * The resolved common column collations are provided too; but note that if
1065  * it's not UNION ALL, it's okay for a column to not have a common collation,
1066  * so a member of the colCollations list could be InvalidOid even though the
1067  * column has a collatable type.
1068  * ----------------------
1069  */
1070 typedef struct SetOperationStmt
1071 {
1072         NodeTag         type;
1073         SetOperation op;                        /* type of set op */
1074         bool            all;                    /* ALL specified? */
1075         Node       *larg;                       /* left child */
1076         Node       *rarg;                       /* right child */
1077         /* Eventually add fields for CORRESPONDING spec here */
1078
1079         /* Fields derived during parse analysis: */
1080         List       *colTypes;           /* OID list of output column type OIDs */
1081         List       *colTypmods;         /* integer list of output column typmods */
1082         List       *colCollations;      /* OID list of output column collation OIDs */
1083         List       *groupClauses;       /* a list of SortGroupClause's */
1084         /* groupClauses is NIL if UNION ALL, but must be set otherwise */
1085 } SetOperationStmt;
1086
1087
1088 /*****************************************************************************
1089  *              Other Statements (no optimizations required)
1090  *
1091  *              These are not touched by parser/analyze.c except to put them into
1092  *              the utilityStmt field of a Query.  This is eventually passed to
1093  *              ProcessUtility (by-passing rewriting and planning).  Some of the
1094  *              statements do need attention from parse analysis, and this is
1095  *              done by routines in parser/parse_utilcmd.c after ProcessUtility
1096  *              receives the command for execution.
1097  *****************************************************************************/
1098
1099 /*
1100  * When a command can act on several kinds of objects with only one
1101  * parse structure required, use these constants to designate the
1102  * object type.  Note that commands typically don't support all the types.
1103  */
1104
1105 typedef enum ObjectType
1106 {
1107         OBJECT_AGGREGATE,
1108         OBJECT_ATTRIBUTE,                       /* type's attribute, when distinct from column */
1109         OBJECT_CAST,
1110         OBJECT_COLUMN,
1111         OBJECT_CONSTRAINT,
1112         OBJECT_COLLATION,
1113         OBJECT_CONVERSION,
1114         OBJECT_DATABASE,
1115         OBJECT_DOMAIN,
1116         OBJECT_EXTENSION,
1117         OBJECT_FDW,
1118         OBJECT_FOREIGN_SERVER,
1119         OBJECT_FOREIGN_TABLE,
1120         OBJECT_FUNCTION,
1121         OBJECT_INDEX,
1122         OBJECT_LANGUAGE,
1123         OBJECT_LARGEOBJECT,
1124         OBJECT_OPCLASS,
1125         OBJECT_OPERATOR,
1126         OBJECT_OPFAMILY,
1127         OBJECT_ROLE,
1128         OBJECT_RULE,
1129         OBJECT_SCHEMA,
1130         OBJECT_SEQUENCE,
1131         OBJECT_TABLE,
1132         OBJECT_TABLESPACE,
1133         OBJECT_TRIGGER,
1134         OBJECT_TSCONFIGURATION,
1135         OBJECT_TSDICTIONARY,
1136         OBJECT_TSPARSER,
1137         OBJECT_TSTEMPLATE,
1138         OBJECT_TYPE,
1139         OBJECT_VIEW
1140 } ObjectType;
1141
1142 /* ----------------------
1143  *              Create Schema Statement
1144  *
1145  * NOTE: the schemaElts list contains raw parsetrees for component statements
1146  * of the schema, such as CREATE TABLE, GRANT, etc.  These are analyzed and
1147  * executed after the schema itself is created.
1148  * ----------------------
1149  */
1150 typedef struct CreateSchemaStmt
1151 {
1152         NodeTag         type;
1153         char       *schemaname;         /* the name of the schema to create */
1154         char       *authid;                     /* the owner of the created schema */
1155         List       *schemaElts;         /* schema components (list of parsenodes) */
1156 } CreateSchemaStmt;
1157
1158 typedef enum DropBehavior
1159 {
1160         DROP_RESTRICT,                          /* drop fails if any dependent objects */
1161         DROP_CASCADE                            /* remove dependent objects too */
1162 } DropBehavior;
1163
1164 /* ----------------------
1165  *      Alter Table
1166  * ----------------------
1167  */
1168 typedef struct AlterTableStmt
1169 {
1170         NodeTag         type;
1171         RangeVar   *relation;           /* table to work on */
1172         List       *cmds;                       /* list of subcommands */
1173         ObjectType      relkind;                /* type of object */
1174 } AlterTableStmt;
1175
1176 typedef enum AlterTableType
1177 {
1178         AT_AddColumn,                           /* add column */
1179         AT_AddColumnRecurse,            /* internal to commands/tablecmds.c */
1180         AT_AddColumnToView,                     /* implicitly via CREATE OR REPLACE VIEW */
1181         AT_ColumnDefault,                       /* alter column default */
1182         AT_DropNotNull,                         /* alter column drop not null */
1183         AT_SetNotNull,                          /* alter column set not null */
1184         AT_SetStatistics,                       /* alter column set statistics */
1185         AT_SetOptions,                          /* alter column set ( options ) */
1186         AT_ResetOptions,                        /* alter column reset ( options ) */
1187         AT_SetStorage,                          /* alter column set storage */
1188         AT_DropColumn,                          /* drop column */
1189         AT_DropColumnRecurse,           /* internal to commands/tablecmds.c */
1190         AT_AddIndex,                            /* add index */
1191         AT_ReAddIndex,                          /* internal to commands/tablecmds.c */
1192         AT_AddConstraint,                       /* add constraint */
1193         AT_AddConstraintRecurse,        /* internal to commands/tablecmds.c */
1194         AT_ValidateConstraint,          /* validate constraint */
1195         AT_ValidateConstraintRecurse, /* internal to commands/tablecmds.c */
1196         AT_ProcessedConstraint,         /* pre-processed add constraint (local in
1197                                                                  * parser/parse_utilcmd.c) */
1198         AT_AddIndexConstraint,          /* add constraint using existing index */
1199         AT_DropConstraint,                      /* drop constraint */
1200         AT_DropConstraintRecurse,       /* internal to commands/tablecmds.c */
1201         AT_AlterColumnType,                     /* alter column type */
1202         AT_AlterColumnGenericOptions,   /* alter column OPTIONS (...) */
1203         AT_ChangeOwner,                         /* change owner */
1204         AT_ClusterOn,                           /* CLUSTER ON */
1205         AT_DropCluster,                         /* SET WITHOUT CLUSTER */
1206         AT_AddOids,                                     /* SET WITH OIDS */
1207         AT_AddOidsRecurse,                      /* internal to commands/tablecmds.c */
1208         AT_DropOids,                            /* SET WITHOUT OIDS */
1209         AT_SetTableSpace,                       /* SET TABLESPACE */
1210         AT_SetRelOptions,                       /* SET (...) -- AM specific parameters */
1211         AT_ResetRelOptions,                     /* RESET (...) -- AM specific parameters */
1212         AT_ReplaceRelOptions,           /* replace reloption list in its entirety */
1213         AT_EnableTrig,                          /* ENABLE TRIGGER name */
1214         AT_EnableAlwaysTrig,            /* ENABLE ALWAYS TRIGGER name */
1215         AT_EnableReplicaTrig,           /* ENABLE REPLICA TRIGGER name */
1216         AT_DisableTrig,                         /* DISABLE TRIGGER name */
1217         AT_EnableTrigAll,                       /* ENABLE TRIGGER ALL */
1218         AT_DisableTrigAll,                      /* DISABLE TRIGGER ALL */
1219         AT_EnableTrigUser,                      /* ENABLE TRIGGER USER */
1220         AT_DisableTrigUser,                     /* DISABLE TRIGGER USER */
1221         AT_EnableRule,                          /* ENABLE RULE name */
1222         AT_EnableAlwaysRule,            /* ENABLE ALWAYS RULE name */
1223         AT_EnableReplicaRule,           /* ENABLE REPLICA RULE name */
1224         AT_DisableRule,                         /* DISABLE RULE name */
1225         AT_AddInherit,                          /* INHERIT parent */
1226         AT_DropInherit,                         /* NO INHERIT parent */
1227         AT_AddOf,                                       /* OF <type_name> */
1228         AT_DropOf,                                      /* NOT OF */
1229         AT_GenericOptions                       /* OPTIONS (...) */
1230 } AlterTableType;
1231
1232 typedef struct AlterTableCmd    /* one subcommand of an ALTER TABLE */
1233 {
1234         NodeTag         type;
1235         AlterTableType subtype;         /* Type of table alteration to apply */
1236         char       *name;                       /* column, constraint, or trigger to act on,
1237                                                                  * or new owner or tablespace */
1238         Node       *def;                        /* definition of new column, index,
1239                                                                  * constraint, or parent table */
1240         DropBehavior behavior;          /* RESTRICT or CASCADE for DROP cases */
1241         bool            missing_ok;             /* skip error if missing? */
1242 } AlterTableCmd;
1243
1244
1245 /* ----------------------
1246  *      Alter Domain
1247  *
1248  * The fields are used in different ways by the different variants of
1249  * this command.
1250  * ----------------------
1251  */
1252 typedef struct AlterDomainStmt
1253 {
1254         NodeTag         type;
1255         char            subtype;                /*------------
1256                                                                  *      T = alter column default
1257                                                                  *      N = alter column drop not null
1258                                                                  *      O = alter column set not null
1259                                                                  *      C = add constraint
1260                                                                  *      X = drop constraint
1261                                                                  *------------
1262                                                                  */
1263         List       *typeName;           /* domain to work on */
1264         char       *name;                       /* column or constraint name to act on */
1265         Node       *def;                        /* definition of default or constraint */
1266         DropBehavior behavior;          /* RESTRICT or CASCADE for DROP cases */
1267         bool            missing_ok;             /* skip error if missing? */
1268 } AlterDomainStmt;
1269
1270
1271 /* ----------------------
1272  *              Grant|Revoke Statement
1273  * ----------------------
1274  */
1275 typedef enum GrantTargetType
1276 {
1277         ACL_TARGET_OBJECT,                      /* grant on specific named object(s) */
1278         ACL_TARGET_ALL_IN_SCHEMA,       /* grant on all objects in given schema(s) */
1279         ACL_TARGET_DEFAULTS                     /* ALTER DEFAULT PRIVILEGES */
1280 } GrantTargetType;
1281
1282 typedef enum GrantObjectType
1283 {
1284         ACL_OBJECT_COLUMN,                      /* column */
1285         ACL_OBJECT_RELATION,            /* table, view */
1286         ACL_OBJECT_SEQUENCE,            /* sequence */
1287         ACL_OBJECT_DATABASE,            /* database */
1288         ACL_OBJECT_DOMAIN,                      /* domain */
1289         ACL_OBJECT_FDW,                         /* foreign-data wrapper */
1290         ACL_OBJECT_FOREIGN_SERVER,      /* foreign server */
1291         ACL_OBJECT_FUNCTION,            /* function */
1292         ACL_OBJECT_LANGUAGE,            /* procedural language */
1293         ACL_OBJECT_LARGEOBJECT,         /* largeobject */
1294         ACL_OBJECT_NAMESPACE,           /* namespace */
1295         ACL_OBJECT_TABLESPACE,          /* tablespace */
1296         ACL_OBJECT_TYPE                         /* type */
1297 } GrantObjectType;
1298
1299 typedef struct GrantStmt
1300 {
1301         NodeTag         type;
1302         bool            is_grant;               /* true = GRANT, false = REVOKE */
1303         GrantTargetType targtype;       /* type of the grant target */
1304         GrantObjectType objtype;        /* kind of object being operated on */
1305         List       *objects;            /* list of RangeVar nodes, FuncWithArgs nodes,
1306                                                                  * or plain names (as Value strings) */
1307         List       *privileges;         /* list of AccessPriv nodes */
1308         /* privileges == NIL denotes ALL PRIVILEGES */
1309         List       *grantees;           /* list of PrivGrantee nodes */
1310         bool            grant_option;   /* grant or revoke grant option */
1311         DropBehavior behavior;          /* drop behavior (for REVOKE) */
1312 } GrantStmt;
1313
1314 typedef struct PrivGrantee
1315 {
1316         NodeTag         type;
1317         char       *rolname;            /* if NULL then PUBLIC */
1318 } PrivGrantee;
1319
1320 /*
1321  * Note: FuncWithArgs carries only the types of the input parameters of the
1322  * function.  So it is sufficient to identify an existing function, but it
1323  * is not enough info to define a function nor to call it.
1324  */
1325 typedef struct FuncWithArgs
1326 {
1327         NodeTag         type;
1328         List       *funcname;           /* qualified name of function */
1329         List       *funcargs;           /* list of Typename nodes */
1330 } FuncWithArgs;
1331
1332 /*
1333  * An access privilege, with optional list of column names
1334  * priv_name == NULL denotes ALL PRIVILEGES (only used with a column list)
1335  * cols == NIL denotes "all columns"
1336  * Note that simple "ALL PRIVILEGES" is represented as a NIL list, not
1337  * an AccessPriv with both fields null.
1338  */
1339 typedef struct AccessPriv
1340 {
1341         NodeTag         type;
1342         char       *priv_name;          /* string name of privilege */
1343         List       *cols;                       /* list of Value strings */
1344 } AccessPriv;
1345
1346 /* ----------------------
1347  *              Grant/Revoke Role Statement
1348  *
1349  * Note: because of the parsing ambiguity with the GRANT <privileges>
1350  * statement, granted_roles is a list of AccessPriv; the execution code
1351  * should complain if any column lists appear.  grantee_roles is a list
1352  * of role names, as Value strings.
1353  * ----------------------
1354  */
1355 typedef struct GrantRoleStmt
1356 {
1357         NodeTag         type;
1358         List       *granted_roles;      /* list of roles to be granted/revoked */
1359         List       *grantee_roles;      /* list of member roles to add/delete */
1360         bool            is_grant;               /* true = GRANT, false = REVOKE */
1361         bool            admin_opt;              /* with admin option */
1362         char       *grantor;            /* set grantor to other than current role */
1363         DropBehavior behavior;          /* drop behavior (for REVOKE) */
1364 } GrantRoleStmt;
1365
1366 /* ----------------------
1367  *      Alter Default Privileges Statement
1368  * ----------------------
1369  */
1370 typedef struct AlterDefaultPrivilegesStmt
1371 {
1372         NodeTag         type;
1373         List       *options;            /* list of DefElem */
1374         GrantStmt  *action;                     /* GRANT/REVOKE action (with objects=NIL) */
1375 } AlterDefaultPrivilegesStmt;
1376
1377 /* ----------------------
1378  *              Copy Statement
1379  *
1380  * We support "COPY relation FROM file", "COPY relation TO file", and
1381  * "COPY (query) TO file".      In any given CopyStmt, exactly one of "relation"
1382  * and "query" must be non-NULL.
1383  * ----------------------
1384  */
1385 typedef struct CopyStmt
1386 {
1387         NodeTag         type;
1388         RangeVar   *relation;           /* the relation to copy */
1389         Node       *query;                      /* the SELECT query to copy */
1390         List       *attlist;            /* List of column names (as Strings), or NIL
1391                                                                  * for all columns */
1392         bool            is_from;                /* TO or FROM */
1393         char       *filename;           /* filename, or NULL for STDIN/STDOUT */
1394         List       *options;            /* List of DefElem nodes */
1395 } CopyStmt;
1396
1397 /* ----------------------
1398  * SET Statement (includes RESET)
1399  *
1400  * "SET var TO DEFAULT" and "RESET var" are semantically equivalent, but we
1401  * preserve the distinction in VariableSetKind for CreateCommandTag().
1402  * ----------------------
1403  */
1404 typedef enum
1405 {
1406         VAR_SET_VALUE,                          /* SET var = value */
1407         VAR_SET_DEFAULT,                        /* SET var TO DEFAULT */
1408         VAR_SET_CURRENT,                        /* SET var FROM CURRENT */
1409         VAR_SET_MULTI,                          /* special case for SET TRANSACTION ... */
1410         VAR_RESET,                                      /* RESET var */
1411         VAR_RESET_ALL                           /* RESET ALL */
1412 } VariableSetKind;
1413
1414 typedef struct VariableSetStmt
1415 {
1416         NodeTag         type;
1417         VariableSetKind kind;
1418         char       *name;                       /* variable to be set */
1419         List       *args;                       /* List of A_Const nodes */
1420         bool            is_local;               /* SET LOCAL? */
1421 } VariableSetStmt;
1422
1423 /* ----------------------
1424  * Show Statement
1425  * ----------------------
1426  */
1427 typedef struct VariableShowStmt
1428 {
1429         NodeTag         type;
1430         char       *name;
1431 } VariableShowStmt;
1432
1433 /* ----------------------
1434  *              Create Table Statement
1435  *
1436  * NOTE: in the raw gram.y output, ColumnDef and Constraint nodes are
1437  * intermixed in tableElts, and constraints is NIL.  After parse analysis,
1438  * tableElts contains just ColumnDefs, and constraints contains just
1439  * Constraint nodes (in fact, only CONSTR_CHECK nodes, in the present
1440  * implementation).
1441  * ----------------------
1442  */
1443
1444 typedef struct CreateStmt
1445 {
1446         NodeTag         type;
1447         RangeVar   *relation;           /* relation to create */
1448         List       *tableElts;          /* column definitions (list of ColumnDef) */
1449         List       *inhRelations;       /* relations to inherit from (list of
1450                                                                  * inhRelation) */
1451         TypeName   *ofTypename;         /* OF typename */
1452         List       *constraints;        /* constraints (list of Constraint nodes) */
1453         List       *options;            /* options from WITH clause */
1454         OnCommitAction oncommit;        /* what do we do at COMMIT? */
1455         char       *tablespacename; /* table space to use, or NULL */
1456         bool            if_not_exists;  /* just do nothing if it already exists? */
1457 } CreateStmt;
1458
1459 /* ----------
1460  * Definitions for constraints in CreateStmt
1461  *
1462  * Note that column defaults are treated as a type of constraint,
1463  * even though that's a bit odd semantically.
1464  *
1465  * For constraints that use expressions (CONSTR_CHECK, CONSTR_DEFAULT)
1466  * we may have the expression in either "raw" form (an untransformed
1467  * parse tree) or "cooked" form (the nodeToString representation of
1468  * an executable expression tree), depending on how this Constraint
1469  * node was created (by parsing, or by inheritance from an existing
1470  * relation).  We should never have both in the same node!
1471  *
1472  * FKCONSTR_ACTION_xxx values are stored into pg_constraint.confupdtype
1473  * and pg_constraint.confdeltype columns; FKCONSTR_MATCH_xxx values are
1474  * stored into pg_constraint.confmatchtype.  Changing the code values may
1475  * require an initdb!
1476  *
1477  * If skip_validation is true then we skip checking that the existing rows
1478  * in the table satisfy the constraint, and just install the catalog entries
1479  * for the constraint.  A new FK constraint is marked as valid iff
1480  * initially_valid is true.  (Usually skip_validation and initially_valid
1481  * are inverses, but we can set both true if the table is known empty.)
1482  *
1483  * Constraint attributes (DEFERRABLE etc) are initially represented as
1484  * separate Constraint nodes for simplicity of parsing.  parse_utilcmd.c makes
1485  * a pass through the constraints list to insert the info into the appropriate
1486  * Constraint node.
1487  * ----------
1488  */
1489
1490 typedef enum ConstrType                 /* types of constraints */
1491 {
1492         CONSTR_NULL,                            /* not SQL92, but a lot of people expect it */
1493         CONSTR_NOTNULL,
1494         CONSTR_DEFAULT,
1495         CONSTR_CHECK,
1496         CONSTR_PRIMARY,
1497         CONSTR_UNIQUE,
1498         CONSTR_EXCLUSION,
1499         CONSTR_FOREIGN,
1500         CONSTR_ATTR_DEFERRABLE,         /* attributes for previous constraint node */
1501         CONSTR_ATTR_NOT_DEFERRABLE,
1502         CONSTR_ATTR_DEFERRED,
1503         CONSTR_ATTR_IMMEDIATE
1504 } ConstrType;
1505
1506 /* Foreign key action codes */
1507 #define FKCONSTR_ACTION_NOACTION        'a'
1508 #define FKCONSTR_ACTION_RESTRICT        'r'
1509 #define FKCONSTR_ACTION_CASCADE         'c'
1510 #define FKCONSTR_ACTION_SETNULL         'n'
1511 #define FKCONSTR_ACTION_SETDEFAULT      'd'
1512
1513 /* Foreign key matchtype codes */
1514 #define FKCONSTR_MATCH_FULL                     'f'
1515 #define FKCONSTR_MATCH_PARTIAL          'p'
1516 #define FKCONSTR_MATCH_UNSPECIFIED      'u'
1517
1518 typedef struct Constraint
1519 {
1520         NodeTag         type;
1521         ConstrType      contype;                /* see above */
1522
1523         /* Fields used for most/all constraint types: */
1524         char       *conname;            /* Constraint name, or NULL if unnamed */
1525         bool            deferrable;             /* DEFERRABLE? */
1526         bool            initdeferred;   /* INITIALLY DEFERRED? */
1527         int                     location;               /* token location, or -1 if unknown */
1528
1529         /* Fields used for constraints with expressions (CHECK and DEFAULT): */
1530         Node       *raw_expr;           /* expr, as untransformed parse tree */
1531         char       *cooked_expr;        /* expr, as nodeToString representation */
1532
1533         /* Fields used for unique constraints (UNIQUE and PRIMARY KEY): */
1534         List       *keys;                       /* String nodes naming referenced column(s) */
1535
1536         /* Fields used for EXCLUSION constraints: */
1537         List       *exclusions;         /* list of (IndexElem, operator name) pairs */
1538
1539         /* Fields used for index constraints (UNIQUE, PRIMARY KEY, EXCLUSION): */
1540         List       *options;            /* options from WITH clause */
1541         char       *indexname;          /* existing index to use; otherwise NULL */
1542         char       *indexspace;         /* index tablespace; NULL for default */
1543         /* These could be, but currently are not, used for UNIQUE/PKEY: */
1544         char       *access_method;      /* index access method; NULL for default */
1545         Node       *where_clause;       /* partial index predicate */
1546
1547         /* Fields used for FOREIGN KEY constraints: */
1548         RangeVar   *pktable;            /* Primary key table */
1549         List       *fk_attrs;           /* Attributes of foreign key */
1550         List       *pk_attrs;           /* Corresponding attrs in PK table */
1551         char            fk_matchtype;   /* FULL, PARTIAL, UNSPECIFIED */
1552         char            fk_upd_action;  /* ON UPDATE action */
1553         char            fk_del_action;  /* ON DELETE action */
1554
1555         /* Fields used for constraints that allow a NOT VALID specification */
1556         bool            skip_validation;        /* skip validation of existing rows? */
1557         bool            initially_valid;        /* mark the new constraint as valid? */
1558 } Constraint;
1559
1560 /* ----------------------
1561  *              Create/Drop Table Space Statements
1562  * ----------------------
1563  */
1564
1565 typedef struct CreateTableSpaceStmt
1566 {
1567         NodeTag         type;
1568         char       *tablespacename;
1569         char       *owner;
1570         char       *location;
1571 } CreateTableSpaceStmt;
1572
1573 typedef struct DropTableSpaceStmt
1574 {
1575         NodeTag         type;
1576         char       *tablespacename;
1577         bool            missing_ok;             /* skip error if missing? */
1578 } DropTableSpaceStmt;
1579
1580 typedef struct AlterTableSpaceOptionsStmt
1581 {
1582         NodeTag         type;
1583         char       *tablespacename;
1584         List       *options;
1585         bool            isReset;
1586 } AlterTableSpaceOptionsStmt;
1587
1588 /* ----------------------
1589  *              Create/Alter Extension Statements
1590  * ----------------------
1591  */
1592
1593 typedef struct CreateExtensionStmt
1594 {
1595         NodeTag         type;
1596         char       *extname;
1597         bool            if_not_exists;  /* just do nothing if it already exists? */
1598         List       *options;            /* List of DefElem nodes */
1599 } CreateExtensionStmt;
1600
1601 /* Only used for ALTER EXTENSION UPDATE; later might need an action field */
1602 typedef struct AlterExtensionStmt
1603 {
1604         NodeTag         type;
1605         char       *extname;
1606         List       *options;            /* List of DefElem nodes */
1607 } AlterExtensionStmt;
1608
1609 typedef struct AlterExtensionContentsStmt
1610 {
1611         NodeTag         type;
1612         char       *extname;            /* Extension's name */
1613         int                     action;                 /* +1 = add object, -1 = drop object */
1614         ObjectType      objtype;                /* Object's type */
1615         List       *objname;            /* Qualified name of the object */
1616         List       *objargs;            /* Arguments if needed (eg, for functions) */
1617 } AlterExtensionContentsStmt;
1618
1619 /* ----------------------
1620  *              Create/Alter FOREIGN DATA WRAPPER Statements
1621  * ----------------------
1622  */
1623
1624 typedef struct CreateFdwStmt
1625 {
1626         NodeTag         type;
1627         char       *fdwname;            /* foreign-data wrapper name */
1628         List       *func_options;       /* HANDLER/VALIDATOR options */
1629         List       *options;            /* generic options to FDW */
1630 } CreateFdwStmt;
1631
1632 typedef struct AlterFdwStmt
1633 {
1634         NodeTag         type;
1635         char       *fdwname;            /* foreign-data wrapper name */
1636         List       *func_options;       /* HANDLER/VALIDATOR options */
1637         List       *options;            /* generic options to FDW */
1638 } AlterFdwStmt;
1639
1640 /* ----------------------
1641  *              Create/Alter FOREIGN SERVER Statements
1642  * ----------------------
1643  */
1644
1645 typedef struct CreateForeignServerStmt
1646 {
1647         NodeTag         type;
1648         char       *servername;         /* server name */
1649         char       *servertype;         /* optional server type */
1650         char       *version;            /* optional server version */
1651         char       *fdwname;            /* FDW name */
1652         List       *options;            /* generic options to server */
1653 } CreateForeignServerStmt;
1654
1655 typedef struct AlterForeignServerStmt
1656 {
1657         NodeTag         type;
1658         char       *servername;         /* server name */
1659         char       *version;            /* optional server version */
1660         List       *options;            /* generic options to server */
1661         bool            has_version;    /* version specified */
1662 } AlterForeignServerStmt;
1663
1664 /* ----------------------
1665  *              Create FOREIGN TABLE Statements
1666  * ----------------------
1667  */
1668
1669 typedef struct CreateForeignTableStmt
1670 {
1671         CreateStmt      base;
1672         char       *servername;
1673         List       *options;
1674 } CreateForeignTableStmt;
1675
1676 /* ----------------------
1677  *              Create/Drop USER MAPPING Statements
1678  * ----------------------
1679  */
1680
1681 typedef struct CreateUserMappingStmt
1682 {
1683         NodeTag         type;
1684         char       *username;           /* username or PUBLIC/CURRENT_USER */
1685         char       *servername;         /* server name */
1686         List       *options;            /* generic options to server */
1687 } CreateUserMappingStmt;
1688
1689 typedef struct AlterUserMappingStmt
1690 {
1691         NodeTag         type;
1692         char       *username;           /* username or PUBLIC/CURRENT_USER */
1693         char       *servername;         /* server name */
1694         List       *options;            /* generic options to server */
1695 } AlterUserMappingStmt;
1696
1697 typedef struct DropUserMappingStmt
1698 {
1699         NodeTag         type;
1700         char       *username;           /* username or PUBLIC/CURRENT_USER */
1701         char       *servername;         /* server name */
1702         bool            missing_ok;             /* ignore missing mappings */
1703 } DropUserMappingStmt;
1704
1705 /* ----------------------
1706  *              Create TRIGGER Statement
1707  * ----------------------
1708  */
1709 typedef struct CreateTrigStmt
1710 {
1711         NodeTag         type;
1712         char       *trigname;           /* TRIGGER's name */
1713         RangeVar   *relation;           /* relation trigger is on */
1714         List       *funcname;           /* qual. name of function to call */
1715         List       *args;                       /* list of (T_String) Values or NIL */
1716         bool            row;                    /* ROW/STATEMENT */
1717         /* timing uses the TRIGGER_TYPE bits defined in catalog/pg_trigger.h */
1718         int16           timing;                 /* BEFORE, AFTER, or INSTEAD */
1719         /* events uses the TRIGGER_TYPE bits defined in catalog/pg_trigger.h */
1720         int16           events;                 /* "OR" of INSERT/UPDATE/DELETE/TRUNCATE */
1721         List       *columns;            /* column names, or NIL for all columns */
1722         Node       *whenClause;         /* qual expression, or NULL if none */
1723         bool            isconstraint;   /* This is a constraint trigger */
1724         /* The remaining fields are only used for constraint triggers */
1725         bool            deferrable;             /* [NOT] DEFERRABLE */
1726         bool            initdeferred;   /* INITIALLY {DEFERRED|IMMEDIATE} */
1727         RangeVar   *constrrel;          /* opposite relation, if RI trigger */
1728 } CreateTrigStmt;
1729
1730 /* ----------------------
1731  *              Create PROCEDURAL LANGUAGE Statements
1732  * ----------------------
1733  */
1734 typedef struct CreatePLangStmt
1735 {
1736         NodeTag         type;
1737         bool            replace;                /* T => replace if already exists */
1738         char       *plname;                     /* PL name */
1739         List       *plhandler;          /* PL call handler function (qual. name) */
1740         List       *plinline;           /* optional inline function (qual. name) */
1741         List       *plvalidator;        /* optional validator function (qual. name) */
1742         bool            pltrusted;              /* PL is trusted */
1743 } CreatePLangStmt;
1744
1745 /* ----------------------
1746  *      Create/Alter/Drop Role Statements
1747  *
1748  * Note: these node types are also used for the backwards-compatible
1749  * Create/Alter/Drop User/Group statements.  In the ALTER and DROP cases
1750  * there's really no need to distinguish what the original spelling was,
1751  * but for CREATE we mark the type because the defaults vary.
1752  * ----------------------
1753  */
1754 typedef enum RoleStmtType
1755 {
1756         ROLESTMT_ROLE,
1757         ROLESTMT_USER,
1758         ROLESTMT_GROUP
1759 } RoleStmtType;
1760
1761 typedef struct CreateRoleStmt
1762 {
1763         NodeTag         type;
1764         RoleStmtType stmt_type;         /* ROLE/USER/GROUP */
1765         char       *role;                       /* role name */
1766         List       *options;            /* List of DefElem nodes */
1767 } CreateRoleStmt;
1768
1769 typedef struct AlterRoleStmt
1770 {
1771         NodeTag         type;
1772         char       *role;                       /* role name */
1773         List       *options;            /* List of DefElem nodes */
1774         int                     action;                 /* +1 = add members, -1 = drop members */
1775 } AlterRoleStmt;
1776
1777 typedef struct AlterRoleSetStmt
1778 {
1779         NodeTag         type;
1780         char       *role;                       /* role name */
1781         char       *database;           /* database name, or NULL */
1782         VariableSetStmt *setstmt;       /* SET or RESET subcommand */
1783 } AlterRoleSetStmt;
1784
1785 typedef struct DropRoleStmt
1786 {
1787         NodeTag         type;
1788         List       *roles;                      /* List of roles to remove */
1789         bool            missing_ok;             /* skip error if a role is missing? */
1790 } DropRoleStmt;
1791
1792 /* ----------------------
1793  *              {Create|Alter} SEQUENCE Statement
1794  * ----------------------
1795  */
1796
1797 typedef struct CreateSeqStmt
1798 {
1799         NodeTag         type;
1800         RangeVar   *sequence;           /* the sequence to create */
1801         List       *options;
1802         Oid                     ownerId;                /* ID of owner, or InvalidOid for default */
1803 } CreateSeqStmt;
1804
1805 typedef struct AlterSeqStmt
1806 {
1807         NodeTag         type;
1808         RangeVar   *sequence;           /* the sequence to alter */
1809         List       *options;
1810 } AlterSeqStmt;
1811
1812 /* ----------------------
1813  *              Create {Aggregate|Operator|Type} Statement
1814  * ----------------------
1815  */
1816 typedef struct DefineStmt
1817 {
1818         NodeTag         type;
1819         ObjectType      kind;                   /* aggregate, operator, type */
1820         bool            oldstyle;               /* hack to signal old CREATE AGG syntax */
1821         List       *defnames;           /* qualified name (list of Value strings) */
1822         List       *args;                       /* a list of TypeName (if needed) */
1823         List       *definition;         /* a list of DefElem */
1824 } DefineStmt;
1825
1826 /* ----------------------
1827  *              Create Domain Statement
1828  * ----------------------
1829  */
1830 typedef struct CreateDomainStmt
1831 {
1832         NodeTag         type;
1833         List       *domainname;         /* qualified name (list of Value strings) */
1834         TypeName   *typeName;           /* the base type */
1835         CollateClause *collClause;      /* untransformed COLLATE spec, if any */
1836         List       *constraints;        /* constraints (list of Constraint nodes) */
1837 } CreateDomainStmt;
1838
1839 /* ----------------------
1840  *              Create Operator Class Statement
1841  * ----------------------
1842  */
1843 typedef struct CreateOpClassStmt
1844 {
1845         NodeTag         type;
1846         List       *opclassname;        /* qualified name (list of Value strings) */
1847         List       *opfamilyname;       /* qualified name (ditto); NIL if omitted */
1848         char       *amname;                     /* name of index AM opclass is for */
1849         TypeName   *datatype;           /* datatype of indexed column */
1850         List       *items;                      /* List of CreateOpClassItem nodes */
1851         bool            isDefault;              /* Should be marked as default for type? */
1852 } CreateOpClassStmt;
1853
1854 #define OPCLASS_ITEM_OPERATOR           1
1855 #define OPCLASS_ITEM_FUNCTION           2
1856 #define OPCLASS_ITEM_STORAGETYPE        3
1857
1858 typedef struct CreateOpClassItem
1859 {
1860         NodeTag         type;
1861         int                     itemtype;               /* see codes above */
1862         /* fields used for an operator or function item: */
1863         List       *name;                       /* operator or function name */
1864         List       *args;                       /* argument types */
1865         int                     number;                 /* strategy num or support proc num */
1866         List       *order_family;       /* only used for ordering operators */
1867         List       *class_args;         /* only used for functions */
1868         /* fields used for a storagetype item: */
1869         TypeName   *storedtype;         /* datatype stored in index */
1870 } CreateOpClassItem;
1871
1872 /* ----------------------
1873  *              Create Operator Family Statement
1874  * ----------------------
1875  */
1876 typedef struct CreateOpFamilyStmt
1877 {
1878         NodeTag         type;
1879         List       *opfamilyname;       /* qualified name (list of Value strings) */
1880         char       *amname;                     /* name of index AM opfamily is for */
1881 } CreateOpFamilyStmt;
1882
1883 /* ----------------------
1884  *              Alter Operator Family Statement
1885  * ----------------------
1886  */
1887 typedef struct AlterOpFamilyStmt
1888 {
1889         NodeTag         type;
1890         List       *opfamilyname;       /* qualified name (list of Value strings) */
1891         char       *amname;                     /* name of index AM opfamily is for */
1892         bool            isDrop;                 /* ADD or DROP the items? */
1893         List       *items;                      /* List of CreateOpClassItem nodes */
1894 } AlterOpFamilyStmt;
1895
1896 /* ----------------------
1897  *              Drop Table|Sequence|View|Index|Type|Domain|Conversion|Schema Statement
1898  * ----------------------
1899  */
1900
1901 typedef struct DropStmt
1902 {
1903         NodeTag         type;
1904         List       *objects;            /* list of sublists of names (as Values) */
1905         List       *arguments;          /* list of sublists of arguments (as Values) */
1906         ObjectType      removeType;             /* object type */
1907         DropBehavior behavior;          /* RESTRICT or CASCADE behavior */
1908         bool            missing_ok;             /* skip error if object is missing? */
1909 } DropStmt;
1910
1911 /* ----------------------
1912  *                              Truncate Table Statement
1913  * ----------------------
1914  */
1915 typedef struct TruncateStmt
1916 {
1917         NodeTag         type;
1918         List       *relations;          /* relations (RangeVars) to be truncated */
1919         bool            restart_seqs;   /* restart owned sequences? */
1920         DropBehavior behavior;          /* RESTRICT or CASCADE behavior */
1921 } TruncateStmt;
1922
1923 /* ----------------------
1924  *                              Comment On Statement
1925  * ----------------------
1926  */
1927 typedef struct CommentStmt
1928 {
1929         NodeTag         type;
1930         ObjectType      objtype;                /* Object's type */
1931         List       *objname;            /* Qualified name of the object */
1932         List       *objargs;            /* Arguments if needed (eg, for functions) */
1933         char       *comment;            /* Comment to insert, or NULL to remove */
1934 } CommentStmt;
1935
1936 /* ----------------------
1937  *                              SECURITY LABEL Statement
1938  * ----------------------
1939  */
1940 typedef struct SecLabelStmt
1941 {
1942         NodeTag         type;
1943         ObjectType      objtype;                /* Object's type */
1944         List       *objname;            /* Qualified name of the object */
1945         List       *objargs;            /* Arguments if needed (eg, for functions) */
1946         char       *provider;           /* Label provider (or NULL) */
1947         char       *label;                      /* New security label to be assigned */
1948 } SecLabelStmt;
1949
1950 /* ----------------------
1951  *              Declare Cursor Statement
1952  *
1953  * Note: the "query" field of DeclareCursorStmt is only used in the raw grammar
1954  * output.      After parse analysis it's set to null, and the Query points to the
1955  * DeclareCursorStmt, not vice versa.
1956  * ----------------------
1957  */
1958 #define CURSOR_OPT_BINARY               0x0001  /* BINARY */
1959 #define CURSOR_OPT_SCROLL               0x0002  /* SCROLL explicitly given */
1960 #define CURSOR_OPT_NO_SCROLL    0x0004  /* NO SCROLL explicitly given */
1961 #define CURSOR_OPT_INSENSITIVE  0x0008  /* INSENSITIVE */
1962 #define CURSOR_OPT_HOLD                 0x0010  /* WITH HOLD */
1963 /* these planner-control flags do not correspond to any SQL grammar: */
1964 #define CURSOR_OPT_FAST_PLAN    0x0020  /* prefer fast-start plan */
1965 #define CURSOR_OPT_GENERIC_PLAN 0x0040  /* force use of generic plan */
1966 #define CURSOR_OPT_CUSTOM_PLAN  0x0080  /* force use of custom plan */
1967
1968 typedef struct DeclareCursorStmt
1969 {
1970         NodeTag         type;
1971         char       *portalname;         /* name of the portal (cursor) */
1972         int                     options;                /* bitmask of options (see above) */
1973         Node       *query;                      /* the raw SELECT query */
1974 } DeclareCursorStmt;
1975
1976 /* ----------------------
1977  *              Close Portal Statement
1978  * ----------------------
1979  */
1980 typedef struct ClosePortalStmt
1981 {
1982         NodeTag         type;
1983         char       *portalname;         /* name of the portal (cursor) */
1984         /* NULL means CLOSE ALL */
1985 } ClosePortalStmt;
1986
1987 /* ----------------------
1988  *              Fetch Statement (also Move)
1989  * ----------------------
1990  */
1991 typedef enum FetchDirection
1992 {
1993         /* for these, howMany is how many rows to fetch; FETCH_ALL means ALL */
1994         FETCH_FORWARD,
1995         FETCH_BACKWARD,
1996         /* for these, howMany indicates a position; only one row is fetched */
1997         FETCH_ABSOLUTE,
1998         FETCH_RELATIVE
1999 } FetchDirection;
2000
2001 #define FETCH_ALL       LONG_MAX
2002
2003 typedef struct FetchStmt
2004 {
2005         NodeTag         type;
2006         FetchDirection direction;       /* see above */
2007         long            howMany;                /* number of rows, or position argument */
2008         char       *portalname;         /* name of portal (cursor) */
2009         bool            ismove;                 /* TRUE if MOVE */
2010 } FetchStmt;
2011
2012 /* ----------------------
2013  *              Create Index Statement
2014  *
2015  * This represents creation of an index and/or an associated constraint.
2016  * If indexOid isn't InvalidOid, we are not creating an index, just a
2017  * UNIQUE/PKEY constraint using an existing index.      isconstraint must always
2018  * be true in this case, and the fields describing the index properties are
2019  * empty.
2020  * ----------------------
2021  */
2022 typedef struct IndexStmt
2023 {
2024         NodeTag         type;
2025         char       *idxname;            /* name of new index, or NULL for default */
2026         RangeVar   *relation;           /* relation to build index on */
2027         char       *accessMethod;       /* name of access method (eg. btree) */
2028         char       *tableSpace;         /* tablespace, or NULL for default */
2029         List       *indexParams;        /* a list of IndexElem */
2030         List       *options;            /* options from WITH clause */
2031         Node       *whereClause;        /* qualification (partial-index predicate) */
2032         List       *excludeOpNames; /* exclusion operator names, or NIL if none */
2033         Oid                     indexOid;               /* OID of an existing index, if any */
2034         Oid                     oldNode;                /* relfilenode of my former self */
2035         bool            unique;                 /* is index unique? */
2036         bool            primary;                /* is index on primary key? */
2037         bool            isconstraint;   /* is it from a CONSTRAINT clause? */
2038         bool            deferrable;             /* is the constraint DEFERRABLE? */
2039         bool            initdeferred;   /* is the constraint INITIALLY DEFERRED? */
2040         bool            concurrent;             /* should this be a concurrent index build? */
2041 } IndexStmt;
2042
2043 /* ----------------------
2044  *              Create Function Statement
2045  * ----------------------
2046  */
2047 typedef struct CreateFunctionStmt
2048 {
2049         NodeTag         type;
2050         bool            replace;                /* T => replace if already exists */
2051         List       *funcname;           /* qualified name of function to create */
2052         List       *parameters;         /* a list of FunctionParameter */
2053         TypeName   *returnType;         /* the return type */
2054         List       *options;            /* a list of DefElem */
2055         List       *withClause;         /* a list of DefElem */
2056 } CreateFunctionStmt;
2057
2058 typedef enum FunctionParameterMode
2059 {
2060         /* the assigned enum values appear in pg_proc, don't change 'em! */
2061         FUNC_PARAM_IN = 'i',            /* input only */
2062         FUNC_PARAM_OUT = 'o',           /* output only */
2063         FUNC_PARAM_INOUT = 'b',         /* both */
2064         FUNC_PARAM_VARIADIC = 'v',      /* variadic (always input) */
2065         FUNC_PARAM_TABLE = 't'          /* table function output column */
2066 } FunctionParameterMode;
2067
2068 typedef struct FunctionParameter
2069 {
2070         NodeTag         type;
2071         char       *name;                       /* parameter name, or NULL if not given */
2072         TypeName   *argType;            /* TypeName for parameter type */
2073         FunctionParameterMode mode; /* IN/OUT/etc */
2074         Node       *defexpr;            /* raw default expr, or NULL if not given */
2075 } FunctionParameter;
2076
2077 typedef struct AlterFunctionStmt
2078 {
2079         NodeTag         type;
2080         FuncWithArgs *func;                     /* name and args of function */
2081         List       *actions;            /* list of DefElem */
2082 } AlterFunctionStmt;
2083
2084 /* ----------------------
2085  *              DO Statement
2086  *
2087  * DoStmt is the raw parser output, InlineCodeBlock is the execution-time API
2088  * ----------------------
2089  */
2090 typedef struct DoStmt
2091 {
2092         NodeTag         type;
2093         List       *args;                       /* List of DefElem nodes */
2094 } DoStmt;
2095
2096 typedef struct InlineCodeBlock
2097 {
2098         NodeTag         type;
2099         char       *source_text;        /* source text of anonymous code block */
2100         Oid                     langOid;                /* OID of selected language */
2101         bool            langIsTrusted;  /* trusted property of the language */
2102 } InlineCodeBlock;
2103
2104 /* ----------------------
2105  *              Alter Object Rename Statement
2106  * ----------------------
2107  */
2108 typedef struct RenameStmt
2109 {
2110         NodeTag         type;
2111         ObjectType      renameType;             /* OBJECT_TABLE, OBJECT_COLUMN, etc */
2112         ObjectType      relationType;   /* if column name, associated relation type */
2113         RangeVar   *relation;           /* in case it's a table */
2114         List       *object;                     /* in case it's some other object */
2115         List       *objarg;                     /* argument types, if applicable */
2116         char       *subname;            /* name of contained object (column, rule,
2117                                                                  * trigger, etc) */
2118         char       *newname;            /* the new name */
2119         DropBehavior behavior;          /* RESTRICT or CASCADE behavior */
2120 } RenameStmt;
2121
2122 /* ----------------------
2123  *              ALTER object SET SCHEMA Statement
2124  * ----------------------
2125  */
2126 typedef struct AlterObjectSchemaStmt
2127 {
2128         NodeTag         type;
2129         ObjectType objectType;          /* OBJECT_TABLE, OBJECT_TYPE, etc */
2130         RangeVar   *relation;           /* in case it's a table */
2131         List       *object;                     /* in case it's some other object */
2132         List       *objarg;                     /* argument types, if applicable */
2133         char       *addname;            /* additional name if needed */
2134         char       *newschema;          /* the new schema */
2135 } AlterObjectSchemaStmt;
2136
2137 /* ----------------------
2138  *              Alter Object Owner Statement
2139  * ----------------------
2140  */
2141 typedef struct AlterOwnerStmt
2142 {
2143         NodeTag         type;
2144         ObjectType objectType;          /* OBJECT_TABLE, OBJECT_TYPE, etc */
2145         RangeVar   *relation;           /* in case it's a table */
2146         List       *object;                     /* in case it's some other object */
2147         List       *objarg;                     /* argument types, if applicable */
2148         char       *addname;            /* additional name if needed */
2149         char       *newowner;           /* the new owner */
2150 } AlterOwnerStmt;
2151
2152
2153 /* ----------------------
2154  *              Create Rule Statement
2155  * ----------------------
2156  */
2157 typedef struct RuleStmt
2158 {
2159         NodeTag         type;
2160         RangeVar   *relation;           /* relation the rule is for */
2161         char       *rulename;           /* name of the rule */
2162         Node       *whereClause;        /* qualifications */
2163         CmdType         event;                  /* SELECT, INSERT, etc */
2164         bool            instead;                /* is a 'do instead'? */
2165         List       *actions;            /* the action statements */
2166         bool            replace;                /* OR REPLACE */
2167 } RuleStmt;
2168
2169 /* ----------------------
2170  *              Notify Statement
2171  * ----------------------
2172  */
2173 typedef struct NotifyStmt
2174 {
2175         NodeTag         type;
2176         char       *conditionname;      /* condition name to notify */
2177         char       *payload;            /* the payload string, or NULL if none */
2178 } NotifyStmt;
2179
2180 /* ----------------------
2181  *              Listen Statement
2182  * ----------------------
2183  */
2184 typedef struct ListenStmt
2185 {
2186         NodeTag         type;
2187         char       *conditionname;      /* condition name to listen on */
2188 } ListenStmt;
2189
2190 /* ----------------------
2191  *              Unlisten Statement
2192  * ----------------------
2193  */
2194 typedef struct UnlistenStmt
2195 {
2196         NodeTag         type;
2197         char       *conditionname;      /* name to unlisten on, or NULL for all */
2198 } UnlistenStmt;
2199
2200 /* ----------------------
2201  *              {Begin|Commit|Rollback} Transaction Statement
2202  * ----------------------
2203  */
2204 typedef enum TransactionStmtKind
2205 {
2206         TRANS_STMT_BEGIN,
2207         TRANS_STMT_START,                       /* semantically identical to BEGIN */
2208         TRANS_STMT_COMMIT,
2209         TRANS_STMT_ROLLBACK,
2210         TRANS_STMT_SAVEPOINT,
2211         TRANS_STMT_RELEASE,
2212         TRANS_STMT_ROLLBACK_TO,
2213         TRANS_STMT_PREPARE,
2214         TRANS_STMT_COMMIT_PREPARED,
2215         TRANS_STMT_ROLLBACK_PREPARED
2216 } TransactionStmtKind;
2217
2218 typedef struct TransactionStmt
2219 {
2220         NodeTag         type;
2221         TransactionStmtKind kind;       /* see above */
2222         List       *options;            /* for BEGIN/START and savepoint commands */
2223         char       *gid;                        /* for two-phase-commit related commands */
2224 } TransactionStmt;
2225
2226 /* ----------------------
2227  *              Create Type Statement, composite types
2228  * ----------------------
2229  */
2230 typedef struct CompositeTypeStmt
2231 {
2232         NodeTag         type;
2233         RangeVar   *typevar;            /* the composite type to be created */
2234         List       *coldeflist;         /* list of ColumnDef nodes */
2235 } CompositeTypeStmt;
2236
2237 /* ----------------------
2238  *              Create Type Statement, enum types
2239  * ----------------------
2240  */
2241 typedef struct CreateEnumStmt
2242 {
2243         NodeTag         type;
2244         List       *typeName;           /* qualified name (list of Value strings) */
2245         List       *vals;                       /* enum values (list of Value strings) */
2246 } CreateEnumStmt;
2247
2248 /* ----------------------
2249  *              Create Type Statement, range types
2250  * ----------------------
2251  */
2252 typedef struct CreateRangeStmt
2253 {
2254         NodeTag         type;
2255         List       *typeName;           /* qualified name (list of Value strings) */
2256         List       *params;                     /* range parameters (list of DefElem) */
2257 } CreateRangeStmt;
2258
2259 /* ----------------------
2260  *              Alter Type Statement, enum types
2261  * ----------------------
2262  */
2263 typedef struct AlterEnumStmt
2264 {
2265         NodeTag         type;
2266         List       *typeName;           /* qualified name (list of Value strings) */
2267         char       *newVal;                     /* new enum value's name */
2268         char       *newValNeighbor; /* neighboring enum value, if specified */
2269         bool            newValIsAfter;  /* place new enum value after neighbor? */
2270 } AlterEnumStmt;
2271
2272 /* ----------------------
2273  *              Create View Statement
2274  * ----------------------
2275  */
2276 typedef struct ViewStmt
2277 {
2278         NodeTag         type;
2279         RangeVar   *view;                       /* the view to be created */
2280         List       *aliases;            /* target column names */
2281         Node       *query;                      /* the SELECT query */
2282         bool            replace;                /* replace an existing view? */
2283         List       *options;            /* options from WITH clause */
2284 } ViewStmt;
2285
2286 /* ----------------------
2287  *              Load Statement
2288  * ----------------------
2289  */
2290 typedef struct LoadStmt
2291 {
2292         NodeTag         type;
2293         char       *filename;           /* file to load */
2294 } LoadStmt;
2295
2296 /* ----------------------
2297  *              Createdb Statement
2298  * ----------------------
2299  */
2300 typedef struct CreatedbStmt
2301 {
2302         NodeTag         type;
2303         char       *dbname;                     /* name of database to create */
2304         List       *options;            /* List of DefElem nodes */
2305 } CreatedbStmt;
2306
2307 /* ----------------------
2308  *      Alter Database
2309  * ----------------------
2310  */
2311 typedef struct AlterDatabaseStmt
2312 {
2313         NodeTag         type;
2314         char       *dbname;                     /* name of database to alter */
2315         List       *options;            /* List of DefElem nodes */
2316 } AlterDatabaseStmt;
2317
2318 typedef struct AlterDatabaseSetStmt
2319 {
2320         NodeTag         type;
2321         char       *dbname;                     /* database name */
2322         VariableSetStmt *setstmt;       /* SET or RESET subcommand */
2323 } AlterDatabaseSetStmt;
2324
2325 /* ----------------------
2326  *              Dropdb Statement
2327  * ----------------------
2328  */
2329 typedef struct DropdbStmt
2330 {
2331         NodeTag         type;
2332         char       *dbname;                     /* database to drop */
2333         bool            missing_ok;             /* skip error if db is missing? */
2334 } DropdbStmt;
2335
2336 /* ----------------------
2337  *              Cluster Statement (support pbrown's cluster index implementation)
2338  * ----------------------
2339  */
2340 typedef struct ClusterStmt
2341 {
2342         NodeTag         type;
2343         RangeVar   *relation;           /* relation being indexed, or NULL if all */
2344         char       *indexname;          /* original index defined */
2345         bool            verbose;                /* print progress info */
2346 } ClusterStmt;
2347
2348 /* ----------------------
2349  *              Vacuum and Analyze Statements
2350  *
2351  * Even though these are nominally two statements, it's convenient to use
2352  * just one node type for both.  Note that at least one of VACOPT_VACUUM
2353  * and VACOPT_ANALYZE must be set in options.  VACOPT_FREEZE is an internal
2354  * convenience for the grammar and is not examined at runtime --- the
2355  * freeze_min_age and freeze_table_age fields are what matter.
2356  * ----------------------
2357  */
2358 typedef enum VacuumOption
2359 {
2360         VACOPT_VACUUM = 1 << 0,         /* do VACUUM */
2361         VACOPT_ANALYZE = 1 << 1,        /* do ANALYZE */
2362         VACOPT_VERBOSE = 1 << 2,        /* print progress info */
2363         VACOPT_FREEZE = 1 << 3,         /* FREEZE option */
2364         VACOPT_FULL = 1 << 4,           /* FULL (non-concurrent) vacuum */
2365         VACOPT_NOWAIT = 1 << 5          /* don't wait to get lock (autovacuum only) */
2366 } VacuumOption;
2367
2368 typedef struct VacuumStmt
2369 {
2370         NodeTag         type;
2371         int                     options;                /* OR of VacuumOption flags */
2372         int                     freeze_min_age; /* min freeze age, or -1 to use default */
2373         int                     freeze_table_age;               /* age at which to scan whole table */
2374         RangeVar   *relation;           /* single table to process, or NULL */
2375         List       *va_cols;            /* list of column names, or NIL for all */
2376 } VacuumStmt;
2377
2378 /* ----------------------
2379  *              Explain Statement
2380  *
2381  * The "query" field is either a raw parse tree (SelectStmt, InsertStmt, etc)
2382  * or a Query node if parse analysis has been done.  Note that rewriting and
2383  * planning of the query are always postponed until execution of EXPLAIN.
2384  * ----------------------
2385  */
2386 typedef struct ExplainStmt
2387 {
2388         NodeTag         type;
2389         Node       *query;                      /* the query (see comments above) */
2390         List       *options;            /* list of DefElem nodes */
2391 } ExplainStmt;
2392
2393 /* ----------------------
2394  * Checkpoint Statement
2395  * ----------------------
2396  */
2397 typedef struct CheckPointStmt
2398 {
2399         NodeTag         type;
2400 } CheckPointStmt;
2401
2402 /* ----------------------
2403  * Discard Statement
2404  * ----------------------
2405  */
2406
2407 typedef enum DiscardMode
2408 {
2409         DISCARD_ALL,
2410         DISCARD_PLANS,
2411         DISCARD_TEMP
2412 } DiscardMode;
2413
2414 typedef struct DiscardStmt
2415 {
2416         NodeTag         type;
2417         DiscardMode target;
2418 } DiscardStmt;
2419
2420 /* ----------------------
2421  *              LOCK Statement
2422  * ----------------------
2423  */
2424 typedef struct LockStmt
2425 {
2426         NodeTag         type;
2427         List       *relations;          /* relations to lock */
2428         int                     mode;                   /* lock mode */
2429         bool            nowait;                 /* no wait mode */
2430 } LockStmt;
2431
2432 /* ----------------------
2433  *              SET CONSTRAINTS Statement
2434  * ----------------------
2435  */
2436 typedef struct ConstraintsSetStmt
2437 {
2438         NodeTag         type;
2439         List       *constraints;        /* List of names as RangeVars */
2440         bool            deferred;
2441 } ConstraintsSetStmt;
2442
2443 /* ----------------------
2444  *              REINDEX Statement
2445  * ----------------------
2446  */
2447 typedef struct ReindexStmt
2448 {
2449         NodeTag         type;
2450         ObjectType      kind;                   /* OBJECT_INDEX, OBJECT_TABLE, OBJECT_DATABASE */
2451         RangeVar   *relation;           /* Table or index to reindex */
2452         const char *name;                       /* name of database to reindex */
2453         bool            do_system;              /* include system tables in database case */
2454         bool            do_user;                /* include user tables in database case */
2455 } ReindexStmt;
2456
2457 /* ----------------------
2458  *              CREATE CONVERSION Statement
2459  * ----------------------
2460  */
2461 typedef struct CreateConversionStmt
2462 {
2463         NodeTag         type;
2464         List       *conversion_name;    /* Name of the conversion */
2465         char       *for_encoding_name;          /* source encoding name */
2466         char       *to_encoding_name;           /* destination encoding name */
2467         List       *func_name;          /* qualified conversion function name */
2468         bool            def;                    /* is this a default conversion? */
2469 } CreateConversionStmt;
2470
2471 /* ----------------------
2472  *      CREATE CAST Statement
2473  * ----------------------
2474  */
2475 typedef struct CreateCastStmt
2476 {
2477         NodeTag         type;
2478         TypeName   *sourcetype;
2479         TypeName   *targettype;
2480         FuncWithArgs *func;
2481         CoercionContext context;
2482         bool            inout;
2483 } CreateCastStmt;
2484
2485 /* ----------------------
2486  *              PREPARE Statement
2487  * ----------------------
2488  */
2489 typedef struct PrepareStmt
2490 {
2491         NodeTag         type;
2492         char       *name;                       /* Name of plan, arbitrary */
2493         List       *argtypes;           /* Types of parameters (List of TypeName) */
2494         Node       *query;                      /* The query itself (as a raw parsetree) */
2495 } PrepareStmt;
2496
2497
2498 /* ----------------------
2499  *              EXECUTE Statement
2500  * ----------------------
2501  */
2502
2503 typedef struct ExecuteStmt
2504 {
2505         NodeTag         type;
2506         char       *name;                       /* The name of the plan to execute */
2507         IntoClause *into;                       /* Optional table to store results in */
2508         List       *params;                     /* Values to assign to parameters */
2509 } ExecuteStmt;
2510
2511
2512 /* ----------------------
2513  *              DEALLOCATE Statement
2514  * ----------------------
2515  */
2516 typedef struct DeallocateStmt
2517 {
2518         NodeTag         type;
2519         char       *name;                       /* The name of the plan to remove */
2520         /* NULL means DEALLOCATE ALL */
2521 } DeallocateStmt;
2522
2523 /*
2524  *              DROP OWNED statement
2525  */
2526 typedef struct DropOwnedStmt
2527 {
2528         NodeTag         type;
2529         List       *roles;
2530         DropBehavior behavior;
2531 } DropOwnedStmt;
2532
2533 /*
2534  *              REASSIGN OWNED statement
2535  */
2536 typedef struct ReassignOwnedStmt
2537 {
2538         NodeTag         type;
2539         List       *roles;
2540         char       *newrole;
2541 } ReassignOwnedStmt;
2542
2543 /*
2544  * TS Dictionary stmts: DefineStmt, RenameStmt and DropStmt are default
2545  */
2546 typedef struct AlterTSDictionaryStmt
2547 {
2548         NodeTag         type;
2549         List       *dictname;           /* qualified name (list of Value strings) */
2550         List       *options;            /* List of DefElem nodes */
2551 } AlterTSDictionaryStmt;
2552
2553 /*
2554  * TS Configuration stmts: DefineStmt, RenameStmt and DropStmt are default
2555  */
2556 typedef struct AlterTSConfigurationStmt
2557 {
2558         NodeTag         type;
2559         List       *cfgname;            /* qualified name (list of Value strings) */
2560
2561         /*
2562          * dicts will be non-NIL if ADD/ALTER MAPPING was specified. If dicts is
2563          * NIL, but tokentype isn't, DROP MAPPING was specified.
2564          */
2565         List       *tokentype;          /* list of Value strings */
2566         List       *dicts;                      /* list of list of Value strings */
2567         bool            override;               /* if true - remove old variant */
2568         bool            replace;                /* if true - replace dictionary by another */
2569         bool            missing_ok;             /* for DROP - skip error if missing? */
2570 } AlterTSConfigurationStmt;
2571
2572 #endif   /* PARSENODES_H */