PostgreSQL Source Code  git master
parse_node.c
Go to the documentation of this file.
1 /*-------------------------------------------------------------------------
2  *
3  * parse_node.c
4  * various routines that make nodes for querytrees
5  *
6  * Portions Copyright (c) 1996-2023, PostgreSQL Global Development Group
7  * Portions Copyright (c) 1994, Regents of the University of California
8  *
9  *
10  * IDENTIFICATION
11  * src/backend/parser/parse_node.c
12  *
13  *-------------------------------------------------------------------------
14  */
15 #include "postgres.h"
16 
17 #include "access/htup_details.h"
18 #include "access/table.h"
19 #include "catalog/pg_type.h"
20 #include "mb/pg_wchar.h"
21 #include "nodes/makefuncs.h"
22 #include "nodes/miscnodes.h"
23 #include "nodes/nodeFuncs.h"
24 #include "nodes/subscripting.h"
25 #include "parser/parse_coerce.h"
26 #include "parser/parse_expr.h"
27 #include "parser/parse_relation.h"
28 #include "parser/parsetree.h"
29 #include "utils/builtins.h"
30 #include "utils/lsyscache.h"
31 #include "utils/syscache.h"
32 #include "utils/varbit.h"
33 
34 static void pcb_error_callback(void *arg);
35 
36 
37 /*
38  * make_parsestate
39  * Allocate and initialize a new ParseState.
40  *
41  * Caller should eventually release the ParseState via free_parsestate().
42  */
43 ParseState *
44 make_parsestate(ParseState *parentParseState)
45 {
46  ParseState *pstate;
47 
48  pstate = palloc0(sizeof(ParseState));
49 
50  pstate->parentParseState = parentParseState;
51 
52  /* Fill in fields that don't start at null/false/zero */
53  pstate->p_next_resno = 1;
54  pstate->p_resolve_unknowns = true;
55 
56  if (parentParseState)
57  {
58  pstate->p_sourcetext = parentParseState->p_sourcetext;
59  /* all hooks are copied from parent */
60  pstate->p_pre_columnref_hook = parentParseState->p_pre_columnref_hook;
61  pstate->p_post_columnref_hook = parentParseState->p_post_columnref_hook;
62  pstate->p_paramref_hook = parentParseState->p_paramref_hook;
63  pstate->p_coerce_param_hook = parentParseState->p_coerce_param_hook;
64  pstate->p_ref_hook_state = parentParseState->p_ref_hook_state;
65  /* query environment stays in context for the whole parse analysis */
66  pstate->p_queryEnv = parentParseState->p_queryEnv;
67  }
68 
69  return pstate;
70 }
71 
72 /*
73  * free_parsestate
74  * Release a ParseState and any subsidiary resources.
75  */
76 void
78 {
79  /*
80  * Check that we did not produce too many resnos; at the very least we
81  * cannot allow more than 2^16, since that would exceed the range of a
82  * AttrNumber. It seems safest to use MaxTupleAttributeNumber.
83  */
84  if (pstate->p_next_resno - 1 > MaxTupleAttributeNumber)
85  ereport(ERROR,
86  (errcode(ERRCODE_TOO_MANY_COLUMNS),
87  errmsg("target lists can have at most %d entries",
89 
90  if (pstate->p_target_relation != NULL)
92 
93  pfree(pstate);
94 }
95 
96 
97 /*
98  * parser_errposition
99  * Report a parse-analysis-time cursor position, if possible.
100  *
101  * This is expected to be used within an ereport() call. The return value
102  * is a dummy (always 0, in fact).
103  *
104  * The locations stored in raw parsetrees are byte offsets into the source
105  * string. We have to convert them to 1-based character indexes for reporting
106  * to clients. (We do things this way to avoid unnecessary overhead in the
107  * normal non-error case: computing character indexes would be much more
108  * expensive than storing token offsets.)
109  */
110 int
111 parser_errposition(ParseState *pstate, int location)
112 {
113  int pos;
114 
115  /* No-op if location was not provided */
116  if (location < 0)
117  return 0;
118  /* Can't do anything if source text is not available */
119  if (pstate == NULL || pstate->p_sourcetext == NULL)
120  return 0;
121  /* Convert offset to character number */
122  pos = pg_mbstrlen_with_len(pstate->p_sourcetext, location) + 1;
123  /* And pass it to the ereport mechanism */
124  return errposition(pos);
125 }
126 
127 
128 /*
129  * setup_parser_errposition_callback
130  * Arrange for non-parser errors to report an error position
131  *
132  * Sometimes the parser calls functions that aren't part of the parser
133  * subsystem and can't reasonably be passed a ParseState; yet we would
134  * like any errors thrown in those functions to be tagged with a parse
135  * error location. Use this function to set up an error context stack
136  * entry that will accomplish that. Usage pattern:
137  *
138  * declare a local variable "ParseCallbackState pcbstate"
139  * ...
140  * setup_parser_errposition_callback(&pcbstate, pstate, location);
141  * call function that might throw error;
142  * cancel_parser_errposition_callback(&pcbstate);
143  */
144 void
146  ParseState *pstate, int location)
147 {
148  /* Setup error traceback support for ereport() */
149  pcbstate->pstate = pstate;
150  pcbstate->location = location;
152  pcbstate->errcallback.arg = (void *) pcbstate;
154  error_context_stack = &pcbstate->errcallback;
155 }
156 
157 /*
158  * Cancel a previously-set-up errposition callback.
159  */
160 void
162 {
163  /* Pop the error context stack */
165 }
166 
167 /*
168  * Error context callback for inserting parser error location.
169  *
170  * Note that this will be called for *any* error occurring while the
171  * callback is installed. We avoid inserting an irrelevant error location
172  * if the error is a query cancel --- are there any other important cases?
173  */
174 static void
176 {
177  ParseCallbackState *pcbstate = (ParseCallbackState *) arg;
178 
179  if (geterrcode() != ERRCODE_QUERY_CANCELED)
180  (void) parser_errposition(pcbstate->pstate, pcbstate->location);
181 }
182 
183 
184 /*
185  * transformContainerType()
186  * Identify the actual container type for a subscripting operation.
187  *
188  * containerType/containerTypmod are modified if necessary to identify
189  * the actual container type and typmod. This mainly involves smashing
190  * any domain to its base type, but there are some special considerations.
191  * Note that caller still needs to check if the result type is a container.
192  */
193 void
194 transformContainerType(Oid *containerType, int32 *containerTypmod)
195 {
196  /*
197  * If the input is a domain, smash to base type, and extract the actual
198  * typmod to be applied to the base type. Subscripting a domain is an
199  * operation that necessarily works on the base container type, not the
200  * domain itself. (Note that we provide no method whereby the creator of a
201  * domain over a container type could hide its ability to be subscripted.)
202  */
203  *containerType = getBaseTypeAndTypmod(*containerType, containerTypmod);
204 
205  /*
206  * We treat int2vector and oidvector as though they were domains over
207  * int2[] and oid[]. This is needed because array slicing could create an
208  * array that doesn't satisfy the dimensionality constraints of the
209  * xxxvector type; so we want the result of a slice operation to be
210  * considered to be of the more general type.
211  */
212  if (*containerType == INT2VECTOROID)
213  *containerType = INT2ARRAYOID;
214  else if (*containerType == OIDVECTOROID)
215  *containerType = OIDARRAYOID;
216 }
217 
218 /*
219  * transformContainerSubscripts()
220  * Transform container (array, etc) subscripting. This is used for both
221  * container fetch and container assignment.
222  *
223  * In a container fetch, we are given a source container value and we produce
224  * an expression that represents the result of extracting a single container
225  * element or a container slice.
226  *
227  * Container assignments are treated basically the same as container fetches
228  * here. The caller will modify the result node to insert the source value
229  * that is to be assigned to the element or slice that a fetch would have
230  * retrieved. The execution result will be a new container value with
231  * the source value inserted into the right part of the container.
232  *
233  * For both cases, if the source is of a domain-over-container type, the
234  * result is the same as if it had been of the container type; essentially,
235  * we must fold a domain to its base type before applying subscripting.
236  * (Note that int2vector and oidvector are treated as domains here.)
237  *
238  * pstate Parse state
239  * containerBase Already-transformed expression for the container as a whole
240  * containerType OID of container's datatype (should match type of
241  * containerBase, or be the base type of containerBase's
242  * domain type)
243  * containerTypMod typmod for the container
244  * indirection Untransformed list of subscripts (must not be NIL)
245  * isAssignment True if this will become a container assignment.
246  */
249  Node *containerBase,
250  Oid containerType,
251  int32 containerTypMod,
252  List *indirection,
253  bool isAssignment)
254 {
255  SubscriptingRef *sbsref;
256  const SubscriptRoutines *sbsroutines;
257  Oid elementType;
258  bool isSlice = false;
259  ListCell *idx;
260 
261  /*
262  * Determine the actual container type, smashing any domain. In the
263  * assignment case the caller already did this, since it also needs to
264  * know the actual container type.
265  */
266  if (!isAssignment)
267  transformContainerType(&containerType, &containerTypMod);
268 
269  /*
270  * Verify that the container type is subscriptable, and get its support
271  * functions and typelem.
272  */
273  sbsroutines = getSubscriptingRoutines(containerType, &elementType);
274  if (!sbsroutines)
275  ereport(ERROR,
276  (errcode(ERRCODE_DATATYPE_MISMATCH),
277  errmsg("cannot subscript type %s because it does not support subscripting",
278  format_type_be(containerType)),
279  parser_errposition(pstate, exprLocation(containerBase))));
280 
281  /*
282  * Detect whether any of the indirection items are slice specifiers.
283  *
284  * A list containing only simple subscripts refers to a single container
285  * element. If any of the items are slice specifiers (lower:upper), then
286  * the subscript expression means a container slice operation.
287  */
288  foreach(idx, indirection)
289  {
291 
292  if (ai->is_slice)
293  {
294  isSlice = true;
295  break;
296  }
297  }
298 
299  /*
300  * Ready to build the SubscriptingRef node.
301  */
302  sbsref = makeNode(SubscriptingRef);
303 
304  sbsref->refcontainertype = containerType;
305  sbsref->refelemtype = elementType;
306  /* refrestype is to be set by container-specific logic */
307  sbsref->reftypmod = containerTypMod;
308  /* refcollid will be set by parse_collate.c */
309  /* refupperindexpr, reflowerindexpr are to be set by container logic */
310  sbsref->refexpr = (Expr *) containerBase;
311  sbsref->refassgnexpr = NULL; /* caller will fill if it's an assignment */
312 
313  /*
314  * Call the container-type-specific logic to transform the subscripts and
315  * determine the subscripting result type.
316  */
317  sbsroutines->transform(sbsref, indirection, pstate,
318  isSlice, isAssignment);
319 
320  /*
321  * Verify we got a valid type (this defends, for example, against someone
322  * using array_subscript_handler as typsubscript without setting typelem).
323  */
324  if (!OidIsValid(sbsref->refrestype))
325  ereport(ERROR,
326  (errcode(ERRCODE_DATATYPE_MISMATCH),
327  errmsg("cannot subscript type %s because it does not support subscripting",
328  format_type_be(containerType))));
329 
330  return sbsref;
331 }
332 
333 /*
334  * make_const
335  *
336  * Convert an A_Const node (as returned by the grammar) to a Const node
337  * of the "natural" type for the constant. Note that this routine is
338  * only used when there is no explicit cast for the constant, so we
339  * have to guess what type is wanted.
340  *
341  * For string literals we produce a constant of type UNKNOWN ---- whose
342  * representation is the same as cstring, but it indicates to later type
343  * resolution that we're not sure yet what type it should be considered.
344  * Explicit "NULL" constants are also typed as UNKNOWN.
345  *
346  * For integers and floats we produce int4, int8, or numeric depending
347  * on the value of the number. XXX We should produce int2 as well,
348  * but additional cleanup is needed before we can do that; there are
349  * too many examples that fail if we try.
350  */
351 Const *
352 make_const(ParseState *pstate, A_Const *aconst)
353 {
354  Const *con;
355  Datum val;
356  Oid typeid;
357  int typelen;
358  bool typebyval;
359  ParseCallbackState pcbstate;
360 
361  if (aconst->isnull)
362  {
363  /* return a null const */
364  con = makeConst(UNKNOWNOID,
365  -1,
366  InvalidOid,
367  -2,
368  (Datum) 0,
369  true,
370  false);
371  con->location = aconst->location;
372  return con;
373  }
374 
375  switch (nodeTag(&aconst->val))
376  {
377  case T_Integer:
378  val = Int32GetDatum(intVal(&aconst->val));
379 
380  typeid = INT4OID;
381  typelen = sizeof(int32);
382  typebyval = true;
383  break;
384 
385  case T_Float:
386  {
387  /* could be an oversize integer as well as a float ... */
388 
389  ErrorSaveContext escontext = {T_ErrorSaveContext};
390  int64 val64;
391 
392  val64 = pg_strtoint64_safe(aconst->val.fval.fval, (Node *) &escontext);
393  if (!escontext.error_occurred)
394  {
395  /*
396  * It might actually fit in int32. Probably only INT_MIN
397  * can occur, but we'll code the test generally just to be
398  * sure.
399  */
400  int32 val32 = (int32) val64;
401 
402  if (val64 == (int64) val32)
403  {
404  val = Int32GetDatum(val32);
405 
406  typeid = INT4OID;
407  typelen = sizeof(int32);
408  typebyval = true;
409  }
410  else
411  {
412  val = Int64GetDatum(val64);
413 
414  typeid = INT8OID;
415  typelen = sizeof(int64);
416  typebyval = FLOAT8PASSBYVAL; /* int8 and float8 alike */
417  }
418  }
419  else
420  {
421  /* arrange to report location if numeric_in() fails */
422  setup_parser_errposition_callback(&pcbstate, pstate, aconst->location);
424  CStringGetDatum(aconst->val.fval.fval),
426  Int32GetDatum(-1));
428 
429  typeid = NUMERICOID;
430  typelen = -1; /* variable len */
431  typebyval = false;
432  }
433  break;
434  }
435 
436  case T_Boolean:
437  val = BoolGetDatum(boolVal(&aconst->val));
438 
439  typeid = BOOLOID;
440  typelen = 1;
441  typebyval = true;
442  break;
443 
444  case T_String:
445 
446  /*
447  * We assume here that UNKNOWN's internal representation is the
448  * same as CSTRING
449  */
450  val = CStringGetDatum(strVal(&aconst->val));
451 
452  typeid = UNKNOWNOID; /* will be coerced later */
453  typelen = -2; /* cstring-style varwidth type */
454  typebyval = false;
455  break;
456 
457  case T_BitString:
458  /* arrange to report location if bit_in() fails */
459  setup_parser_errposition_callback(&pcbstate, pstate, aconst->location);
461  CStringGetDatum(aconst->val.bsval.bsval),
463  Int32GetDatum(-1));
465  typeid = BITOID;
466  typelen = -1;
467  typebyval = false;
468  break;
469 
470  default:
471  elog(ERROR, "unrecognized node type: %d", (int) nodeTag(&aconst->val));
472  return NULL; /* keep compiler quiet */
473  }
474 
475  con = makeConst(typeid,
476  -1, /* typmod -1 is OK for all cases */
477  InvalidOid, /* all cases are uncollatable types */
478  typelen,
479  val,
480  false,
481  typebyval);
482  con->location = aconst->location;
483 
484  return con;
485 }
Datum idx(PG_FUNCTION_ARGS)
Definition: _int_op.c:259
Datum numeric_in(PG_FUNCTION_ARGS)
Definition: numeric.c:627
signed int int32
Definition: c.h:478
#define FLOAT8PASSBYVAL
Definition: c.h:619
#define OidIsValid(objectId)
Definition: c.h:759
int geterrcode(void)
Definition: elog.c:1560
ErrorContextCallback * error_context_stack
Definition: elog.c:95
int errcode(int sqlerrcode)
Definition: elog.c:858
int errmsg(const char *fmt,...)
Definition: elog.c:1069
int errposition(int cursorpos)
Definition: elog.c:1445
#define ERROR
Definition: elog.h:39
#define ereport(elevel,...)
Definition: elog.h:149
Datum Int64GetDatum(int64 X)
Definition: fmgr.c:1778
#define DirectFunctionCall3(func, arg1, arg2, arg3)
Definition: fmgr.h:646
char * format_type_be(Oid type_oid)
Definition: format_type.c:339
#define MaxTupleAttributeNumber
Definition: htup_details.h:34
long val
Definition: informix.c:664
#define NoLock
Definition: lockdefs.h:34
Oid getBaseTypeAndTypmod(Oid typid, int32 *typmod)
Definition: lsyscache.c:2496
const struct SubscriptRoutines * getSubscriptingRoutines(Oid typid, Oid *typelemp)
Definition: lsyscache.c:3088
Const * makeConst(Oid consttype, int32 consttypmod, Oid constcollid, int constlen, Datum constvalue, bool constisnull, bool constbyval)
Definition: makefuncs.c:302
int pg_mbstrlen_with_len(const char *mbstr, int limit)
Definition: mbutils.c:1058
void pfree(void *pointer)
Definition: mcxt.c:1456
void * palloc0(Size size)
Definition: mcxt.c:1257
int exprLocation(const Node *expr)
Definition: nodeFuncs.c:1314
#define nodeTag(nodeptr)
Definition: nodes.h:133
#define makeNode(_type_)
Definition: nodes.h:176
int64 pg_strtoint64_safe(const char *s, Node *escontext)
Definition: numutils.c:475
void cancel_parser_errposition_callback(ParseCallbackState *pcbstate)
Definition: parse_node.c:161
void free_parsestate(ParseState *pstate)
Definition: parse_node.c:77
SubscriptingRef * transformContainerSubscripts(ParseState *pstate, Node *containerBase, Oid containerType, int32 containerTypMod, List *indirection, bool isAssignment)
Definition: parse_node.c:248
int parser_errposition(ParseState *pstate, int location)
Definition: parse_node.c:111
void setup_parser_errposition_callback(ParseCallbackState *pcbstate, ParseState *pstate, int location)
Definition: parse_node.c:145
ParseState * make_parsestate(ParseState *parentParseState)
Definition: parse_node.c:44
void transformContainerType(Oid *containerType, int32 *containerTypmod)
Definition: parse_node.c:194
static void pcb_error_callback(void *arg)
Definition: parse_node.c:175
Const * make_const(ParseState *pstate, A_Const *aconst)
Definition: parse_node.c:352
void * arg
#define lfirst_node(type, lc)
Definition: pg_list.h:176
uintptr_t Datum
Definition: postgres.h:64
static Datum BoolGetDatum(bool X)
Definition: postgres.h:102
static Datum ObjectIdGetDatum(Oid X)
Definition: postgres.h:252
static Datum CStringGetDatum(const char *X)
Definition: postgres.h:350
static Datum Int32GetDatum(int32 X)
Definition: postgres.h:212
#define InvalidOid
Definition: postgres_ext.h:36
unsigned int Oid
Definition: postgres_ext.h:31
bool isnull
Definition: parsenodes.h:361
int location
Definition: parsenodes.h:362
union ValUnion val
Definition: parsenodes.h:360
bool is_slice
Definition: parsenodes.h:457
char * bsval
Definition: value.h:76
struct ErrorContextCallback * previous
Definition: elog.h:295
void(* callback)(void *arg)
Definition: elog.h:296
bool error_occurred
Definition: miscnodes.h:46
char * fval
Definition: value.h:52
Definition: pg_list.h:54
Definition: nodes.h:129
ErrorContextCallback errcallback
Definition: parse_node.h:335
ParseState * pstate
Definition: parse_node.h:333
ParseState * parentParseState
Definition: parse_node.h:191
void * p_ref_hook_state
Definition: parse_node.h:238
ParseParamRefHook p_paramref_hook
Definition: parse_node.h:236
PreParseColumnRefHook p_pre_columnref_hook
Definition: parse_node.h:234
QueryEnvironment * p_queryEnv
Definition: parse_node.h:219
const char * p_sourcetext
Definition: parse_node.h:192
bool p_resolve_unknowns
Definition: parse_node.h:216
int p_next_resno
Definition: parse_node.h:211
Relation p_target_relation
Definition: parse_node.h:206
CoerceParamHook p_coerce_param_hook
Definition: parse_node.h:237
PostParseColumnRefHook p_post_columnref_hook
Definition: parse_node.h:235
SubscriptTransform transform
Definition: subscripting.h:160
Expr * refassgnexpr
Definition: primnodes.h:630
Expr * refexpr
Definition: primnodes.h:628
void table_close(Relation relation, LOCKMODE lockmode)
Definition: table.c:126
BitString bsval
Definition: parsenodes.h:352
Float fval
Definition: parsenodes.h:349
#define boolVal(v)
Definition: value.h:81
#define intVal(v)
Definition: value.h:79
#define strVal(v)
Definition: value.h:82
Datum bit_in(PG_FUNCTION_ARGS)
Definition: varbit.c:147