PostgreSQL Source Code git master
parse_node.h
Go to the documentation of this file.
1/*-------------------------------------------------------------------------
2 *
3 * parse_node.h
4 * Internal definitions for parser
5 *
6 *
7 * Portions Copyright (c) 1996-2025, PostgreSQL Global Development Group
8 * Portions Copyright (c) 1994, Regents of the University of California
9 *
10 * src/include/parser/parse_node.h
11 *
12 *-------------------------------------------------------------------------
13 */
14#ifndef PARSE_NODE_H
15#define PARSE_NODE_H
16
17#include "nodes/parsenodes.h"
19#include "utils/relcache.h"
20
21
22/* Forward references for some structs declared below */
23typedef struct ParseState ParseState;
26
27/*
28 * Expression kinds distinguished by transformExpr(). Many of these are not
29 * semantically distinct so far as expression transformation goes; rather,
30 * we distinguish them so that context-specific error messages can be printed.
31 *
32 * Note: EXPR_KIND_OTHER is not used in the core code, but is left for use
33 * by extension code that might need to call transformExpr(). The core code
34 * will not enforce any context-driven restrictions on EXPR_KIND_OTHER
35 * expressions, so the caller would have to check for sub-selects, aggregates,
36 * window functions, SRFs, etc if those need to be disallowed.
37 */
38typedef enum ParseExprKind
39{
40 EXPR_KIND_NONE = 0, /* "not in an expression" */
41 EXPR_KIND_OTHER, /* reserved for extensions */
42 EXPR_KIND_JOIN_ON, /* JOIN ON */
43 EXPR_KIND_JOIN_USING, /* JOIN USING */
44 EXPR_KIND_FROM_SUBSELECT, /* sub-SELECT in FROM clause */
45 EXPR_KIND_FROM_FUNCTION, /* function in FROM clause */
46 EXPR_KIND_WHERE, /* WHERE */
47 EXPR_KIND_HAVING, /* HAVING */
48 EXPR_KIND_FILTER, /* FILTER */
49 EXPR_KIND_WINDOW_PARTITION, /* window definition PARTITION BY */
50 EXPR_KIND_WINDOW_ORDER, /* window definition ORDER BY */
51 EXPR_KIND_WINDOW_FRAME_RANGE, /* window frame clause with RANGE */
52 EXPR_KIND_WINDOW_FRAME_ROWS, /* window frame clause with ROWS */
53 EXPR_KIND_WINDOW_FRAME_GROUPS, /* window frame clause with GROUPS */
54 EXPR_KIND_SELECT_TARGET, /* SELECT target list item */
55 EXPR_KIND_INSERT_TARGET, /* INSERT target list item */
56 EXPR_KIND_UPDATE_SOURCE, /* UPDATE assignment source item */
57 EXPR_KIND_UPDATE_TARGET, /* UPDATE assignment target item */
58 EXPR_KIND_MERGE_WHEN, /* MERGE WHEN [NOT] MATCHED condition */
59 EXPR_KIND_GROUP_BY, /* GROUP BY */
60 EXPR_KIND_ORDER_BY, /* ORDER BY */
61 EXPR_KIND_DISTINCT_ON, /* DISTINCT ON */
62 EXPR_KIND_LIMIT, /* LIMIT */
63 EXPR_KIND_OFFSET, /* OFFSET */
64 EXPR_KIND_RETURNING, /* RETURNING in INSERT/UPDATE/DELETE */
65 EXPR_KIND_MERGE_RETURNING, /* RETURNING in MERGE */
66 EXPR_KIND_VALUES, /* VALUES */
67 EXPR_KIND_VALUES_SINGLE, /* single-row VALUES (in INSERT only) */
68 EXPR_KIND_CHECK_CONSTRAINT, /* CHECK constraint for a table */
69 EXPR_KIND_DOMAIN_CHECK, /* CHECK constraint for a domain */
70 EXPR_KIND_COLUMN_DEFAULT, /* default value for a table column */
71 EXPR_KIND_FUNCTION_DEFAULT, /* default parameter value for function */
72 EXPR_KIND_INDEX_EXPRESSION, /* index expression */
73 EXPR_KIND_INDEX_PREDICATE, /* index predicate */
74 EXPR_KIND_STATS_EXPRESSION, /* extended statistics expression */
75 EXPR_KIND_ALTER_COL_TRANSFORM, /* transform expr in ALTER COLUMN TYPE */
76 EXPR_KIND_EXECUTE_PARAMETER, /* parameter value in EXECUTE */
77 EXPR_KIND_TRIGGER_WHEN, /* WHEN condition in CREATE TRIGGER */
78 EXPR_KIND_POLICY, /* USING or WITH CHECK expr in policy */
79 EXPR_KIND_PARTITION_BOUND, /* partition bound expression */
80 EXPR_KIND_PARTITION_EXPRESSION, /* PARTITION BY expression */
81 EXPR_KIND_CALL_ARGUMENT, /* procedure argument in CALL */
82 EXPR_KIND_COPY_WHERE, /* WHERE condition in COPY FROM */
83 EXPR_KIND_GENERATED_COLUMN, /* generation expression for a column */
84 EXPR_KIND_CYCLE_MARK, /* cycle mark value */
86
87
88/*
89 * Function signatures for parser hooks
90 */
91typedef Node *(*PreParseColumnRefHook) (ParseState *pstate, ColumnRef *cref);
92typedef Node *(*PostParseColumnRefHook) (ParseState *pstate, ColumnRef *cref, Node *var);
93typedef Node *(*ParseParamRefHook) (ParseState *pstate, ParamRef *pref);
94typedef Node *(*CoerceParamHook) (ParseState *pstate, Param *param,
95 Oid targetTypeId, int32 targetTypeMod,
96 int location);
97
98
99/*
100 * State information used during parse analysis
101 *
102 * parentParseState: NULL in a top-level ParseState. When parsing a subquery,
103 * links to current parse state of outer query.
104 *
105 * p_sourcetext: source string that generated the raw parsetree being
106 * analyzed, or NULL if not available. (The string is used only to
107 * generate cursor positions in error messages: we need it to convert
108 * byte-wise locations in parse structures to character-wise cursor
109 * positions.)
110 *
111 * p_stmt_location: location of the top level RawStmt's start. During
112 * transformation, the Query's location will be set to the statement's
113 * location if available. Otherwise, the RawStmt's start location will
114 * be used. Propagating the location through ParseState is needed for
115 * the Query length calculation (see p_stmt_len below).
116 *
117 * p_stmt_len: length of the top level RawStmt. Most of the time, the
118 * statement's length is not provided by the parser, with the exception
119 * of SelectStmt within parentheses and PreparableStmt in COPY. If the
120 * statement's location is provided by the parser, the top-level location
121 * and length are needed to accurately compute the Query's length. If the
122 * statement's location is not provided, the RawStmt's length can be used
123 * directly.
124 *
125 * p_rtable: list of RTEs that will become the rangetable of the query.
126 * Note that neither relname nor refname of these entries are necessarily
127 * unique; searching the rtable by name is a bad idea.
128 *
129 * p_rteperminfos: list of RTEPermissionInfo containing an entry corresponding
130 * to each RTE_RELATION entry in p_rtable.
131 *
132 * p_joinexprs: list of JoinExpr nodes associated with p_rtable entries.
133 * This is one-for-one with p_rtable, but contains NULLs for non-join
134 * RTEs, and may be shorter than p_rtable if the last RTE(s) aren't joins.
135 *
136 * p_nullingrels: list of Bitmapsets associated with p_rtable entries, each
137 * containing the set of outer-join RTE indexes that can null that relation
138 * at the current point in the parse tree. This is one-for-one with p_rtable,
139 * but may be shorter than p_rtable, in which case the missing entries are
140 * implicitly empty (NULL). That rule allows us to save work when the query
141 * contains no outer joins.
142 *
143 * p_joinlist: list of join items (RangeTblRef and JoinExpr nodes) that
144 * will become the fromlist of the query's top-level FromExpr node.
145 *
146 * p_namespace: list of ParseNamespaceItems that represents the current
147 * namespace for table and column lookup. (The RTEs listed here may be just
148 * a subset of the whole rtable. See ParseNamespaceItem comments below.)
149 *
150 * p_lateral_active: true if we are currently parsing a LATERAL subexpression
151 * of this parse level. This makes p_lateral_only namespace items visible,
152 * whereas they are not visible when p_lateral_active is FALSE.
153 *
154 * p_ctenamespace: list of CommonTableExprs (WITH items) that are visible
155 * at the moment. This is entirely different from p_namespace because a CTE
156 * is not an RTE, rather "visibility" means you could make an RTE from it.
157 *
158 * p_future_ctes: list of CommonTableExprs (WITH items) that are not yet
159 * visible due to scope rules. This is used to help improve error messages.
160 *
161 * p_parent_cte: CommonTableExpr that immediately contains the current query,
162 * if any.
163 *
164 * p_target_relation: target relation, if query is INSERT/UPDATE/DELETE/MERGE
165 *
166 * p_target_nsitem: target relation's ParseNamespaceItem.
167 *
168 * p_grouping_nsitem: the ParseNamespaceItem that represents the grouping step.
169 *
170 * p_is_insert: true to process assignment expressions like INSERT, false
171 * to process them like UPDATE. (Note this can change intra-statement, for
172 * cases like INSERT ON CONFLICT UPDATE.)
173 *
174 * p_windowdefs: list of WindowDefs representing WINDOW and OVER clauses.
175 * We collect these while transforming expressions and then transform them
176 * afterwards (so that any resjunk tlist items needed for the sort/group
177 * clauses end up at the end of the query tlist). A WindowDef's location in
178 * this list, counting from 1, is the winref number to use to reference it.
179 *
180 * p_expr_kind: kind of expression we're currently parsing, as per enum above;
181 * EXPR_KIND_NONE when not in an expression.
182 *
183 * p_next_resno: next TargetEntry.resno to assign, starting from 1.
184 *
185 * p_multiassign_exprs: partially-processed MultiAssignRef source expressions.
186 *
187 * p_locking_clause: query's FOR UPDATE/FOR SHARE clause, if any.
188 *
189 * p_locked_from_parent: true if parent query level applies FOR UPDATE/SHARE
190 * to this subquery as a whole.
191 *
192 * p_resolve_unknowns: resolve unknown-type SELECT output columns as type TEXT
193 * (this is true by default).
194 *
195 * p_hasAggs, p_hasWindowFuncs, etc: true if we've found any of the indicated
196 * constructs in the query.
197 *
198 * p_last_srf: the set-returning FuncExpr or OpExpr most recently found in
199 * the query, or NULL if none.
200 *
201 * p_pre_columnref_hook, etc: optional parser hook functions for modifying the
202 * interpretation of ColumnRefs and ParamRefs.
203 *
204 * p_ref_hook_state: passthrough state for the parser hook functions.
205 */
207{
208 ParseState *parentParseState; /* stack link */
209 const char *p_sourcetext; /* source text, or NULL if not available */
210 ParseLoc p_stmt_location; /* start location, or -1 if unknown */
211 ParseLoc p_stmt_len; /* length in bytes; 0 means "rest of string" */
212 List *p_rtable; /* range table so far */
213 List *p_rteperminfos; /* list of RTEPermissionInfo nodes for each
214 * RTE_RELATION entry in rtable */
215 List *p_joinexprs; /* JoinExprs for RTE_JOIN p_rtable entries */
216 List *p_nullingrels; /* Bitmapsets showing nulling outer joins */
217 List *p_joinlist; /* join items so far (will become FromExpr
218 * node's fromlist) */
219 List *p_namespace; /* currently-referenceable RTEs (List of
220 * ParseNamespaceItem) */
221 bool p_lateral_active; /* p_lateral_only items visible? */
222 List *p_ctenamespace; /* current namespace for common table exprs */
223 List *p_future_ctes; /* common table exprs not yet in namespace */
224 CommonTableExpr *p_parent_cte; /* this query's containing CTE */
225 Relation p_target_relation; /* INSERT/UPDATE/DELETE/MERGE target rel */
226 ParseNamespaceItem *p_target_nsitem; /* target rel's NSItem, or NULL */
227 ParseNamespaceItem *p_grouping_nsitem; /* NSItem for grouping, or NULL */
228 bool p_is_insert; /* process assignment like INSERT not UPDATE */
229 List *p_windowdefs; /* raw representations of window clauses */
230 ParseExprKind p_expr_kind; /* what kind of expression we're parsing */
231 int p_next_resno; /* next targetlist resno to assign */
232 List *p_multiassign_exprs; /* junk tlist entries for multiassign */
233 List *p_locking_clause; /* raw FOR UPDATE/FOR SHARE info */
234 bool p_locked_from_parent; /* parent has marked this subquery
235 * with FOR UPDATE/FOR SHARE */
236 bool p_resolve_unknowns; /* resolve unknown-type SELECT outputs as
237 * type text */
238
239 QueryEnvironment *p_queryEnv; /* curr env, incl refs to enclosing env */
240
241 /* Flags telling about things found in the query: */
247
248 Node *p_last_srf; /* most recent set-returning func/op found */
249
250 /*
251 * Optional hook functions for parser callbacks. These are null unless
252 * set up by the caller of make_parsestate.
253 */
258 void *p_ref_hook_state; /* common passthrough link for above */
259};
260
261/*
262 * An element of a namespace list.
263 *
264 * p_names contains the table name and column names exposed by this nsitem.
265 * (Typically it's equal to p_rte->eref, but for a JOIN USING alias it's
266 * equal to p_rte->join_using_alias. Since the USING columns will be the
267 * join's first N columns, the net effect is just that we expose only those
268 * join columns via this nsitem.)
269 *
270 * p_rte and p_rtindex link to the underlying rangetable entry, and
271 * p_perminfo to the entry in rteperminfos.
272 *
273 * The p_nscolumns array contains info showing how to construct Vars
274 * referencing the names appearing in the p_names->colnames list.
275 *
276 * Namespace items with p_rel_visible set define which RTEs are accessible by
277 * qualified names, while those with p_cols_visible set define which RTEs are
278 * accessible by unqualified names. These sets are different because a JOIN
279 * without an alias does not hide the contained tables (so they must be
280 * visible for qualified references) but it does hide their columns
281 * (unqualified references to the columns refer to the JOIN, not the member
282 * tables, so we must not complain that such a reference is ambiguous).
283 * Conversely, a subquery without an alias does not hide the columns selected
284 * by the subquery, but it does hide the auto-generated relation name (so the
285 * subquery columns are visible for unqualified references only). Various
286 * special RTEs such as NEW/OLD for rules may also appear with only one flag
287 * set.
288 *
289 * While processing the FROM clause, namespace items may appear with
290 * p_lateral_only set, meaning they are visible only to LATERAL
291 * subexpressions. (The pstate's p_lateral_active flag tells whether we are
292 * inside such a subexpression at the moment.) If p_lateral_ok is not set,
293 * it's an error to actually use such a namespace item. One might think it
294 * would be better to just exclude such items from visibility, but the wording
295 * of SQL:2008 requires us to do it this way. We also use p_lateral_ok to
296 * forbid LATERAL references to an UPDATE/DELETE target table.
297 *
298 * While processing the RETURNING clause, special namespace items are added to
299 * refer to the OLD and NEW state of the result relation. These namespace
300 * items have p_returning_type set appropriately, for use when creating Vars.
301 * For convenience, this information is duplicated on each namespace column.
302 *
303 * At no time should a namespace list contain two entries that conflict
304 * according to the rules in checkNameSpaceConflicts; but note that those
305 * are more complicated than "must have different alias names", so in practice
306 * code searching a namespace list has to check for ambiguous references.
307 */
309{
310 Alias *p_names; /* Table and column names */
311 RangeTblEntry *p_rte; /* The relation's rangetable entry */
312 int p_rtindex; /* The relation's index in the rangetable */
313 RTEPermissionInfo *p_perminfo; /* The relation's rteperminfos entry */
314 /* array of same length as p_names->colnames: */
315 ParseNamespaceColumn *p_nscolumns; /* per-column data */
316 bool p_rel_visible; /* Relation name is visible? */
317 bool p_cols_visible; /* Column names visible as unqualified refs? */
318 bool p_lateral_only; /* Is only visible to LATERAL expressions? */
319 bool p_lateral_ok; /* If so, does join type allow use? */
320 VarReturningType p_returning_type; /* Is OLD/NEW for use in RETURNING? */
321};
322
323/*
324 * Data about one column of a ParseNamespaceItem.
325 *
326 * We track the info needed to construct a Var referencing the column
327 * (but only for user-defined columns; system column references and
328 * whole-row references are handled separately).
329 *
330 * p_varno and p_varattno identify the semantic referent, which is a
331 * base-relation column unless the reference is to a join USING column that
332 * isn't semantically equivalent to either join input column (because it is a
333 * FULL join or the input column requires a type coercion). In those cases
334 * p_varno and p_varattno refer to the JOIN RTE.
335 *
336 * p_varnosyn and p_varattnosyn are either identical to p_varno/p_varattno,
337 * or they specify the column's position in an aliased JOIN RTE that hides
338 * the semantic referent RTE's refname. (That could be either the JOIN RTE
339 * in which this ParseNamespaceColumn entry exists, or some lower join level.)
340 *
341 * If an RTE contains a dropped column, its ParseNamespaceColumn struct
342 * is all-zeroes. (Conventionally, test for p_varno == 0 to detect this.)
343 */
345{
346 Index p_varno; /* rangetable index */
347 AttrNumber p_varattno; /* attribute number of the column */
348 Oid p_vartype; /* pg_type OID */
349 int32 p_vartypmod; /* type modifier value */
350 Oid p_varcollid; /* OID of collation, or InvalidOid */
351 VarReturningType p_varreturningtype; /* for RETURNING OLD/NEW */
352 Index p_varnosyn; /* rangetable index of syntactic referent */
353 AttrNumber p_varattnosyn; /* attribute number of syntactic referent */
354 bool p_dontexpand; /* not included in star expansion */
355};
356
357/* Support for parser_errposition_callback function */
358typedef struct ParseCallbackState
359{
364
365
366extern ParseState *make_parsestate(ParseState *parentParseState);
367extern void free_parsestate(ParseState *pstate);
368extern int parser_errposition(ParseState *pstate, int location);
369
371 ParseState *pstate, int location);
373
374extern void transformContainerType(Oid *containerType, int32 *containerTypmod);
375
377 Node *containerBase,
378 Oid containerType,
379 int32 containerTypMod,
380 List *indirection,
381 bool isAssignment);
382extern Const *make_const(ParseState *pstate, A_Const *aconst);
383
384#endif /* PARSE_NODE_H */
int16 AttrNumber
Definition: attnum.h:21
int32_t int32
Definition: c.h:484
unsigned int Index
Definition: c.h:571
int ParseLoc
Definition: nodes.h:240
void cancel_parser_errposition_callback(ParseCallbackState *pcbstate)
Definition: parse_node.c:156
void free_parsestate(ParseState *pstate)
Definition: parse_node.c:72
Node *(* PostParseColumnRefHook)(ParseState *pstate, ColumnRef *cref, Node *var)
Definition: parse_node.h:92
Node *(* PreParseColumnRefHook)(ParseState *pstate, ColumnRef *cref)
Definition: parse_node.h:91
int parser_errposition(ParseState *pstate, int location)
Definition: parse_node.c:106
SubscriptingRef * transformContainerSubscripts(ParseState *pstate, Node *containerBase, Oid containerType, int32 containerTypMod, List *indirection, bool isAssignment)
Definition: parse_node.c:243
void setup_parser_errposition_callback(ParseCallbackState *pcbstate, ParseState *pstate, int location)
Definition: parse_node.c:140
Node *(* ParseParamRefHook)(ParseState *pstate, ParamRef *pref)
Definition: parse_node.h:93
ParseExprKind
Definition: parse_node.h:39
@ EXPR_KIND_EXECUTE_PARAMETER
Definition: parse_node.h:76
@ EXPR_KIND_DOMAIN_CHECK
Definition: parse_node.h:69
@ EXPR_KIND_COPY_WHERE
Definition: parse_node.h:82
@ EXPR_KIND_COLUMN_DEFAULT
Definition: parse_node.h:70
@ EXPR_KIND_DISTINCT_ON
Definition: parse_node.h:61
@ EXPR_KIND_MERGE_WHEN
Definition: parse_node.h:58
@ EXPR_KIND_STATS_EXPRESSION
Definition: parse_node.h:74
@ EXPR_KIND_INDEX_EXPRESSION
Definition: parse_node.h:72
@ EXPR_KIND_MERGE_RETURNING
Definition: parse_node.h:65
@ EXPR_KIND_PARTITION_BOUND
Definition: parse_node.h:79
@ EXPR_KIND_FUNCTION_DEFAULT
Definition: parse_node.h:71
@ EXPR_KIND_WINDOW_FRAME_RANGE
Definition: parse_node.h:51
@ EXPR_KIND_VALUES
Definition: parse_node.h:66
@ EXPR_KIND_FROM_SUBSELECT
Definition: parse_node.h:44
@ EXPR_KIND_POLICY
Definition: parse_node.h:78
@ EXPR_KIND_WINDOW_FRAME_GROUPS
Definition: parse_node.h:53
@ EXPR_KIND_PARTITION_EXPRESSION
Definition: parse_node.h:80
@ EXPR_KIND_JOIN_USING
Definition: parse_node.h:43
@ EXPR_KIND_INDEX_PREDICATE
Definition: parse_node.h:73
@ EXPR_KIND_ORDER_BY
Definition: parse_node.h:60
@ EXPR_KIND_OFFSET
Definition: parse_node.h:63
@ EXPR_KIND_JOIN_ON
Definition: parse_node.h:42
@ EXPR_KIND_HAVING
Definition: parse_node.h:47
@ EXPR_KIND_INSERT_TARGET
Definition: parse_node.h:55
@ EXPR_KIND_ALTER_COL_TRANSFORM
Definition: parse_node.h:75
@ EXPR_KIND_LIMIT
Definition: parse_node.h:62
@ EXPR_KIND_WHERE
Definition: parse_node.h:46
@ EXPR_KIND_UPDATE_TARGET
Definition: parse_node.h:57
@ EXPR_KIND_SELECT_TARGET
Definition: parse_node.h:54
@ EXPR_KIND_RETURNING
Definition: parse_node.h:64
@ EXPR_KIND_GENERATED_COLUMN
Definition: parse_node.h:83
@ EXPR_KIND_NONE
Definition: parse_node.h:40
@ EXPR_KIND_CALL_ARGUMENT
Definition: parse_node.h:81
@ EXPR_KIND_GROUP_BY
Definition: parse_node.h:59
@ EXPR_KIND_OTHER
Definition: parse_node.h:41
@ EXPR_KIND_FROM_FUNCTION
Definition: parse_node.h:45
@ EXPR_KIND_TRIGGER_WHEN
Definition: parse_node.h:77
@ EXPR_KIND_FILTER
Definition: parse_node.h:48
@ EXPR_KIND_UPDATE_SOURCE
Definition: parse_node.h:56
@ EXPR_KIND_CHECK_CONSTRAINT
Definition: parse_node.h:68
@ EXPR_KIND_WINDOW_PARTITION
Definition: parse_node.h:49
@ EXPR_KIND_CYCLE_MARK
Definition: parse_node.h:84
@ EXPR_KIND_WINDOW_FRAME_ROWS
Definition: parse_node.h:52
@ EXPR_KIND_WINDOW_ORDER
Definition: parse_node.h:50
@ EXPR_KIND_VALUES_SINGLE
Definition: parse_node.h:67
Const * make_const(ParseState *pstate, A_Const *aconst)
Definition: parse_node.c:347
void transformContainerType(Oid *containerType, int32 *containerTypmod)
Definition: parse_node.c:189
ParseState * make_parsestate(ParseState *parentParseState)
Definition: parse_node.c:39
struct ParseCallbackState ParseCallbackState
Node *(* CoerceParamHook)(ParseState *pstate, Param *param, Oid targetTypeId, int32 targetTypeMod, int location)
Definition: parse_node.h:94
unsigned int Oid
Definition: postgres_ext.h:32
VarReturningType
Definition: primnodes.h:254
Definition: pg_list.h:54
Definition: nodes.h:129
ErrorContextCallback errcallback
Definition: parse_node.h:362
ParseState * pstate
Definition: parse_node.h:360
VarReturningType p_varreturningtype
Definition: parse_node.h:351
AttrNumber p_varattno
Definition: parse_node.h:347
AttrNumber p_varattnosyn
Definition: parse_node.h:353
RangeTblEntry * p_rte
Definition: parse_node.h:311
ParseNamespaceColumn * p_nscolumns
Definition: parse_node.h:315
RTEPermissionInfo * p_perminfo
Definition: parse_node.h:313
VarReturningType p_returning_type
Definition: parse_node.h:320
bool p_hasTargetSRFs
Definition: parse_node.h:244
ParseState * parentParseState
Definition: parse_node.h:208
void * p_ref_hook_state
Definition: parse_node.h:258
ParseLoc p_stmt_location
Definition: parse_node.h:210
List * p_ctenamespace
Definition: parse_node.h:222
bool p_hasWindowFuncs
Definition: parse_node.h:243
ParseNamespaceItem * p_target_nsitem
Definition: parse_node.h:226
ParseNamespaceItem * p_grouping_nsitem
Definition: parse_node.h:227
ParseExprKind p_expr_kind
Definition: parse_node.h:230
List * p_multiassign_exprs
Definition: parse_node.h:232
bool p_locked_from_parent
Definition: parse_node.h:234
ParseParamRefHook p_paramref_hook
Definition: parse_node.h:256
PreParseColumnRefHook p_pre_columnref_hook
Definition: parse_node.h:254
List * p_nullingrels
Definition: parse_node.h:216
ParseLoc p_stmt_len
Definition: parse_node.h:211
List * p_namespace
Definition: parse_node.h:219
bool p_is_insert
Definition: parse_node.h:228
QueryEnvironment * p_queryEnv
Definition: parse_node.h:239
const char * p_sourcetext
Definition: parse_node.h:209
List * p_windowdefs
Definition: parse_node.h:229
bool p_resolve_unknowns
Definition: parse_node.h:236
int p_next_resno
Definition: parse_node.h:231
bool p_hasModifyingCTE
Definition: parse_node.h:246
List * p_rteperminfos
Definition: parse_node.h:213
List * p_joinexprs
Definition: parse_node.h:215
Relation p_target_relation
Definition: parse_node.h:225
CommonTableExpr * p_parent_cte
Definition: parse_node.h:224
List * p_future_ctes
Definition: parse_node.h:223
bool p_hasSubLinks
Definition: parse_node.h:245
Node * p_last_srf
Definition: parse_node.h:248
List * p_joinlist
Definition: parse_node.h:217
CoerceParamHook p_coerce_param_hook
Definition: parse_node.h:257
PostParseColumnRefHook p_post_columnref_hook
Definition: parse_node.h:255
List * p_locking_clause
Definition: parse_node.h:233
bool p_lateral_active
Definition: parse_node.h:221
List * p_rtable
Definition: parse_node.h:212
bool p_hasAggs
Definition: parse_node.h:242