PostgreSQL Source Code git master
All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
makefuncs.c File Reference
#include "postgres.h"
#include "catalog/pg_class.h"
#include "catalog/pg_type.h"
#include "nodes/makefuncs.h"
#include "nodes/nodeFuncs.h"
#include "utils/lsyscache.h"
Include dependency graph for makefuncs.c:

Go to the source code of this file.

Functions

A_ExprmakeA_Expr (A_Expr_Kind kind, List *name, Node *lexpr, Node *rexpr, int location)
 
A_ExprmakeSimpleA_Expr (A_Expr_Kind kind, char *name, Node *lexpr, Node *rexpr, int location)
 
VarmakeVar (int varno, AttrNumber varattno, Oid vartype, int32 vartypmod, Oid varcollid, Index varlevelsup)
 
VarmakeVarFromTargetEntry (int varno, TargetEntry *tle)
 
VarmakeWholeRowVar (RangeTblEntry *rte, int varno, Index varlevelsup, bool allowScalar)
 
TargetEntrymakeTargetEntry (Expr *expr, AttrNumber resno, char *resname, bool resjunk)
 
TargetEntryflatCopyTargetEntry (TargetEntry *src_tle)
 
FromExprmakeFromExpr (List *fromlist, Node *quals)
 
ConstmakeConst (Oid consttype, int32 consttypmod, Oid constcollid, int constlen, Datum constvalue, bool constisnull, bool constbyval)
 
ConstmakeNullConst (Oid consttype, int32 consttypmod, Oid constcollid)
 
NodemakeBoolConst (bool value, bool isnull)
 
ExprmakeBoolExpr (BoolExprType boolop, List *args, int location)
 
AliasmakeAlias (const char *aliasname, List *colnames)
 
RelabelTypemakeRelabelType (Expr *arg, Oid rtype, int32 rtypmod, Oid rcollid, CoercionForm rformat)
 
RangeVarmakeRangeVar (char *schemaname, char *relname, int location)
 
ConstraintmakeNotNullConstraint (String *colname)
 
TypeNamemakeTypeName (char *typnam)
 
TypeNamemakeTypeNameFromNameList (List *names)
 
TypeNamemakeTypeNameFromOid (Oid typeOid, int32 typmod)
 
ColumnDefmakeColumnDef (const char *colname, Oid typeOid, int32 typmod, Oid collOid)
 
FuncExprmakeFuncExpr (Oid funcid, Oid rettype, List *args, Oid funccollid, Oid inputcollid, CoercionForm fformat)
 
NodemakeStringConst (char *str, int location)
 
DefElemmakeDefElem (char *name, Node *arg, int location)
 
DefElemmakeDefElemExtended (char *nameSpace, char *name, Node *arg, DefElemAction defaction, int location)
 
FuncCallmakeFuncCall (List *name, List *args, CoercionForm funcformat, int location)
 
Exprmake_opclause (Oid opno, Oid opresulttype, bool opretset, Expr *leftop, Expr *rightop, Oid opcollid, Oid inputcollid)
 
Exprmake_andclause (List *andclauses)
 
Exprmake_orclause (List *orclauses)
 
Exprmake_notclause (Expr *notclause)
 
Nodemake_and_qual (Node *qual1, Node *qual2)
 
Exprmake_ands_explicit (List *andclauses)
 
Listmake_ands_implicit (Expr *clause)
 
IndexInfomakeIndexInfo (int numattrs, int numkeyattrs, Oid amoid, List *expressions, List *predicates, bool unique, bool nulls_not_distinct, bool isready, bool concurrent, bool summarizing, bool withoutoverlaps)
 
GroupingSetmakeGroupingSet (GroupingSetKind kind, List *content, int location)
 
VacuumRelationmakeVacuumRelation (RangeVar *relation, Oid oid, List *va_cols)
 
JsonFormatmakeJsonFormat (JsonFormatType type, JsonEncoding encoding, int location)
 
JsonValueExprmakeJsonValueExpr (Expr *raw_expr, Expr *formatted_expr, JsonFormat *format)
 
JsonBehaviormakeJsonBehavior (JsonBehaviorType btype, Node *expr, int location)
 
NodemakeJsonKeyValue (Node *key, Node *value)
 
NodemakeJsonIsPredicate (Node *expr, JsonFormat *format, JsonValueType item_type, bool unique_keys, int location)
 
JsonTablePathSpecmakeJsonTablePathSpec (char *string, char *name, int string_location, int name_location)
 
JsonTablePathmakeJsonTablePath (Const *pathvalue, char *pathname)
 

Function Documentation

◆ flatCopyTargetEntry()

TargetEntry * flatCopyTargetEntry ( TargetEntry src_tle)

Definition at line 322 of file makefuncs.c.

323{
325
326 Assert(IsA(src_tle, TargetEntry));
327 memcpy(tle, src_tle, sizeof(TargetEntry));
328 return tle;
329}
Assert(PointerIsAligned(start, uint64))
#define IsA(nodeptr, _type_)
Definition: nodes.h:164
#define makeNode(_type_)
Definition: nodes.h:161

References Assert(), IsA, and makeNode.

Referenced by expand_insert_targetlist(), process_matched_tle(), rewriteTargetListIU(), set_dummy_tlist_references(), and set_upper_references().

◆ make_and_qual()

Node * make_and_qual ( Node qual1,
Node qual2 
)

Definition at line 780 of file makefuncs.c.

781{
782 if (qual1 == NULL)
783 return qual2;
784 if (qual2 == NULL)
785 return qual1;
786 return (Node *) make_andclause(list_make2(qual1, qual2));
787}
Expr * make_andclause(List *andclauses)
Definition: makefuncs.c:727
#define list_make2(x1, x2)
Definition: pg_list.h:214
Definition: nodes.h:135

References list_make2, and make_andclause().

Referenced by AddQual(), subquery_push_qual(), and transform_MERGE_to_join().

◆ make_andclause()

Expr * make_andclause ( List andclauses)

◆ make_ands_explicit()

Expr * make_ands_explicit ( List andclauses)

Definition at line 799 of file makefuncs.c.

800{
801 if (andclauses == NIL)
802 return (Expr *) makeBoolConst(true, false);
803 else if (list_length(andclauses) == 1)
804 return (Expr *) linitial(andclauses);
805 else
806 return make_andclause(andclauses);
807}
Node * makeBoolConst(bool value, bool isnull)
Definition: makefuncs.c:408
static int list_length(const List *l)
Definition: pg_list.h:152
#define NIL
Definition: pg_list.h:68
#define linitial(l)
Definition: pg_list.h:178

References linitial, list_length(), make_andclause(), makeBoolConst(), and NIL.

Referenced by ATExecAttachPartition(), check_default_partition_contents(), convert_EXISTS_to_ANY(), create_bitmap_subplan(), DetachAddConstraintIfNeeded(), ExecInitCheck(), extract_or_clause(), get_proposed_default_constraint(), get_qual_for_list(), show_qual(), and UpdateIndexRelation().

◆ make_ands_implicit()

List * make_ands_implicit ( Expr clause)

Definition at line 810 of file makefuncs.c.

811{
812 /*
813 * NB: because the parser sets the qual field to NULL in a query that has
814 * no WHERE clause, we must consider a NULL input clause as TRUE, even
815 * though one might more reasonably think it FALSE.
816 */
817 if (clause == NULL)
818 return NIL; /* NULL -> NIL list == TRUE */
819 else if (is_andclause(clause))
820 return ((BoolExpr *) clause)->args;
821 else if (IsA(clause, Const) &&
822 !((Const *) clause)->constisnull &&
823 DatumGetBool(((Const *) clause)->constvalue))
824 return NIL; /* constant TRUE input -> NIL list */
825 else
826 return list_make1(clause);
827}
static bool is_andclause(const void *clause)
Definition: nodeFuncs.h:107
#define list_make1(x1)
Definition: pg_list.h:212
static bool DatumGetBool(Datum X)
Definition: postgres.h:95

References DatumGetBool(), is_andclause(), IsA, list_make1, and NIL.

Referenced by apply_child_basequals(), ConstraintImpliedByRelConstraint(), convert_EXISTS_to_ANY(), cost_subplan(), DefineIndex(), DoCopy(), get_proposed_default_constraint(), get_relation_constraints(), index_concurrently_create_copy(), preprocess_expression(), RelationGetIndexPredicate(), test_predtest(), and TriggerEnabled().

◆ make_notclause()

Expr * make_notclause ( Expr notclause)

Definition at line 759 of file makefuncs.c.

760{
761 BoolExpr *expr = makeNode(BoolExpr);
762
763 expr->boolop = NOT_EXPR;
764 expr->args = list_make1(notclause);
765 expr->location = -1;
766 return (Expr *) expr;
767}
@ NOT_EXPR
Definition: primnodes.h:948

References BoolExpr::args, BoolExpr::boolop, list_make1, BoolExpr::location, makeNode, and NOT_EXPR.

Referenced by negate_clause().

◆ make_opclause()

Expr * make_opclause ( Oid  opno,
Oid  opresulttype,
bool  opretset,
Expr leftop,
Expr rightop,
Oid  opcollid,
Oid  inputcollid 
)

Definition at line 701 of file makefuncs.c.

704{
705 OpExpr *expr = makeNode(OpExpr);
706
707 expr->opno = opno;
708 expr->opfuncid = InvalidOid;
709 expr->opresulttype = opresulttype;
710 expr->opretset = opretset;
711 expr->opcollid = opcollid;
712 expr->inputcollid = inputcollid;
713 if (rightop)
714 expr->args = list_make2(leftop, rightop);
715 else
716 expr->args = list_make1(leftop);
717 expr->location = -1;
718 return (Expr *) expr;
719}
#define InvalidOid
Definition: postgres_ext.h:35
Oid opno
Definition: primnodes.h:835
List * args
Definition: primnodes.h:853
ParseLoc location
Definition: primnodes.h:856

References OpExpr::args, InvalidOid, list_make1, list_make2, OpExpr::location, makeNode, and OpExpr::opno.

Referenced by build_bound_expr(), build_implied_join_equality(), convert_EXISTS_to_ANY(), create_one_window_path(), expand_indexqual_rowcompare(), make_partition_op_expr(), match_boolean_index_clause(), match_clause_to_partition_key(), match_network_subset(), match_pattern_prefix(), operator_predicate_proof(), process_implied_equality(), and rewriteSearchAndCycle().

◆ make_orclause()

◆ makeA_Expr()

A_Expr * makeA_Expr ( A_Expr_Kind  kind,
List name,
Node lexpr,
Node rexpr,
int  location 
)

Definition at line 30 of file makefuncs.c.

32{
34
35 a->kind = kind;
36 a->name = name;
37 a->lexpr = lexpr;
38 a->rexpr = rexpr;
39 a->location = location;
40 return a;
41}
int a
Definition: isn.c:73
const char * name

References a, makeNode, and name.

◆ makeAlias()

◆ makeBoolConst()

Node * makeBoolConst ( bool  value,
bool  isnull 
)

Definition at line 408 of file makefuncs.c.

409{
410 /* note that pg_type.h hardwires size of bool as 1 ... duplicate it */
411 return (Node *) makeConst(BOOLOID, -1, InvalidOid, 1,
412 BoolGetDatum(value), isnull, true);
413}
static struct @165 value
Const * makeConst(Oid consttype, int32 consttypmod, Oid constcollid, int constlen, Datum constvalue, bool constisnull, bool constbyval)
Definition: makefuncs.c:350
static Datum BoolGetDatum(bool X)
Definition: postgres.h:107

References BoolGetDatum(), InvalidOid, makeConst(), and value.

Referenced by add_base_clause_to_rel(), add_join_clause_to_rels(), create_append_plan(), eval_const_expressions_mutator(), find_duplicate_ors(), find_simplified_clause(), get_qual_for_range(), make_ands_explicit(), make_row_distinct_op(), match_boolean_index_clause(), match_boolean_partition_clause(), negate_clause(), process_duplicate_ors(), and reconsider_outer_join_clauses().

◆ makeBoolExpr()

◆ makeColumnDef()

ColumnDef * makeColumnDef ( const char *  colname,
Oid  typeOid,
int32  typmod,
Oid  collOid 
)

Definition at line 565 of file makefuncs.c.

566{
568
569 n->colname = pstrdup(colname);
570 n->typeName = makeTypeNameFromOid(typeOid, typmod);
571 n->inhcount = 0;
572 n->is_local = true;
573 n->is_not_null = false;
574 n->is_from_type = false;
575 n->storage = 0;
576 n->raw_default = NULL;
577 n->cooked_default = NULL;
578 n->collClause = NULL;
579 n->collOid = collOid;
580 n->constraints = NIL;
581 n->fdwoptions = NIL;
582 n->location = -1;
583
584 return n;
585}
TypeName * makeTypeNameFromOid(Oid typeOid, int32 typmod)
Definition: makefuncs.c:547
bool is_not_null
Definition: parsenodes.h:742
CollateClause * collClause
Definition: parsenodes.h:752
List * constraints
Definition: parsenodes.h:754
Node * cooked_default
Definition: parsenodes.h:747
char * colname
Definition: parsenodes.h:737
TypeName * typeName
Definition: parsenodes.h:738
bool is_from_type
Definition: parsenodes.h:743
List * fdwoptions
Definition: parsenodes.h:755
Node * raw_default
Definition: parsenodes.h:746
char storage
Definition: parsenodes.h:744
Oid collOid
Definition: parsenodes.h:753
bool is_local
Definition: parsenodes.h:741
int16 inhcount
Definition: parsenodes.h:740
ParseLoc location
Definition: parsenodes.h:756

References ColumnDef::collClause, ColumnDef::collOid, ColumnDef::colname, ColumnDef::constraints, ColumnDef::cooked_default, ColumnDef::fdwoptions, ColumnDef::inhcount, ColumnDef::is_from_type, ColumnDef::is_local, ColumnDef::is_not_null, ColumnDef::location, makeNode, makeTypeNameFromOid(), NIL, pstrdup(), ColumnDef::raw_default, ColumnDef::storage, and ColumnDef::typeName.

Referenced by create_ctas_nodata(), DefineSequence(), DefineVirtualRelation(), intorel_startup(), MergeAttributes(), transformOfType(), and transformTableLikeClause().

◆ makeConst()

Const * makeConst ( Oid  consttype,
int32  consttypmod,
Oid  constcollid,
int  constlen,
Datum  constvalue,
bool  constisnull,
bool  constbyval 
)

Definition at line 350 of file makefuncs.c.

357{
358 Const *cnst = makeNode(Const);
359
360 /*
361 * If it's a varlena value, force it to be in non-expanded (non-toasted)
362 * format; this avoids any possible dependency on external values and
363 * improves consistency of representation, which is important for equal().
364 */
365 if (!constisnull && constlen == -1)
366 constvalue = PointerGetDatum(PG_DETOAST_DATUM(constvalue));
367
368 cnst->consttype = consttype;
369 cnst->consttypmod = consttypmod;
370 cnst->constcollid = constcollid;
371 cnst->constlen = constlen;
372 cnst->constvalue = constvalue;
373 cnst->constisnull = constisnull;
374 cnst->constbyval = constbyval;
375 cnst->location = -1; /* "unknown" */
376
377 return cnst;
378}
#define PG_DETOAST_DATUM(datum)
Definition: fmgr.h:240
static Datum PointerGetDatum(const void *X)
Definition: postgres.h:327
Oid consttype
Definition: primnodes.h:329

References Const::consttype, makeNode, PG_DETOAST_DATUM, and PointerGetDatum().

Referenced by add_security_quals(), add_with_check_options(), array_subscript_transform(), build_bound_expr(), build_coercion_expression(), build_minmax_path(), check_sql_stmt_retval(), coerce_null_to_domain(), create_final_distinct_paths(), create_partial_distinct_paths(), eval_const_expressions_mutator(), evaluate_expr(), expand_insert_targetlist(), get_qual_for_hash(), get_qual_for_list(), get_typdefault(), GetJsonBehaviorConst(), getJsonEncodingConst(), make_const(), make_SAOP_expr(), makeBoolConst(), makeJsonTablePathScan(), makeNullConst(), match_clause_to_partition_key(), match_network_subset(), pattern_fixed_prefix(), RelationGetDummyIndexExpressions(), rewriteSearchAndCycle(), scalararraysel(), set_fn_opclass_options(), string_to_bytea_const(), string_to_const(), and transformJsonBehavior().

◆ makeDefElem()

DefElem * makeDefElem ( char *  name,
Node arg,
int  location 
)

Definition at line 637 of file makefuncs.c.

638{
639 DefElem *res = makeNode(DefElem);
640
641 res->defnamespace = NULL;
642 res->defname = name;
643 res->arg = arg;
645 res->location = location;
646
647 return res;
648}
@ DEFELEM_UNSPEC
Definition: parsenodes.h:816
void * arg
char * defnamespace
Definition: parsenodes.h:825
DefElemAction defaction
Definition: parsenodes.h:829
char * defname
Definition: parsenodes.h:826
ParseLoc location
Definition: parsenodes.h:830
Node * arg
Definition: parsenodes.h:827

References arg, DefElem::arg, DefElem::defaction, DEFELEM_UNSPEC, DefElem::defname, DefElem::defnamespace, DefElem::location, makeNode, and name.

Referenced by buildDefItem(), copy_table(), DefineView(), fileGetForeignPaths(), generateSerialExtraStmts(), get_file_fdw_attribute_options(), pg_logical_slot_get_changes_guts(), sequence_options(), transformAlterTableStmt(), and untransformRelOptions().

◆ makeDefElemExtended()

DefElem * makeDefElemExtended ( char *  nameSpace,
char *  name,
Node arg,
DefElemAction  defaction,
int  location 
)

Definition at line 655 of file makefuncs.c.

657{
658 DefElem *res = makeNode(DefElem);
659
660 res->defnamespace = nameSpace;
661 res->defname = name;
662 res->arg = arg;
663 res->defaction = defaction;
664 res->location = location;
665
666 return res;
667}

References arg, DefElem::arg, DefElem::defaction, DefElem::defname, DefElem::defnamespace, DefElem::location, makeNode, and name.

◆ makeFromExpr()

◆ makeFuncCall()

FuncCall * makeFuncCall ( List name,
List args,
CoercionForm  funcformat,
int  location 
)

Definition at line 676 of file makefuncs.c.

677{
679
680 n->funcname = name;
681 n->args = args;
682 n->agg_order = NIL;
683 n->agg_filter = NULL;
684 n->over = NULL;
685 n->agg_within_group = false;
686 n->agg_star = false;
687 n->agg_distinct = false;
688 n->func_variadic = false;
689 n->funcformat = funcformat;
690 n->location = location;
691 return n;
692}
bool agg_within_group
Definition: parsenodes.h:442
CoercionForm funcformat
Definition: parsenodes.h:446
Node * agg_filter
Definition: parsenodes.h:440
List * agg_order
Definition: parsenodes.h:439
List * funcname
Definition: parsenodes.h:437
List * args
Definition: parsenodes.h:438
bool agg_star
Definition: parsenodes.h:443
bool agg_distinct
Definition: parsenodes.h:444
ParseLoc location
Definition: parsenodes.h:447
bool func_variadic
Definition: parsenodes.h:445
struct WindowDef * over
Definition: parsenodes.h:441

References FuncCall::agg_distinct, FuncCall::agg_filter, FuncCall::agg_order, FuncCall::agg_star, FuncCall::agg_within_group, generate_unaccent_rules::args, FuncCall::args, FuncCall::func_variadic, FuncCall::funcformat, FuncCall::funcname, FuncCall::location, makeNode, name, NIL, and FuncCall::over.

Referenced by test_rls_hooks_permissive(), test_rls_hooks_restrictive(), transformColumnDefinition(), and transformRangeFunction().

◆ makeFuncExpr()

FuncExpr * makeFuncExpr ( Oid  funcid,
Oid  rettype,
List args,
Oid  funccollid,
Oid  inputcollid,
CoercionForm  fformat 
)

Definition at line 594 of file makefuncs.c.

596{
597 FuncExpr *funcexpr;
598
599 funcexpr = makeNode(FuncExpr);
600 funcexpr->funcid = funcid;
601 funcexpr->funcresulttype = rettype;
602 funcexpr->funcretset = false; /* only allowed case here */
603 funcexpr->funcvariadic = false; /* only allowed case here */
604 funcexpr->funcformat = fformat;
605 funcexpr->funccollid = funccollid;
606 funcexpr->inputcollid = inputcollid;
607 funcexpr->args = args;
608 funcexpr->location = -1;
609
610 return funcexpr;
611}
ParseLoc location
Definition: primnodes.h:787
Oid funcid
Definition: primnodes.h:767
List * args
Definition: primnodes.h:785

References generate_unaccent_rules::args, FuncExpr::args, FuncExpr::funcid, FuncExpr::location, and makeNode.

Referenced by build_aggregate_deserialfn_expr(), build_aggregate_finalfn_expr(), build_aggregate_serialfn_expr(), build_aggregate_transfn_expr(), build_coercion_expression(), coerceJsonFuncExpr(), get_qual_for_hash(), make_path_cat_expr(), makeJsonByteaToTextConversion(), rewriteSearchAndCycle(), and transformJsonValueExpr().

◆ makeGroupingSet()

GroupingSet * makeGroupingSet ( GroupingSetKind  kind,
List content,
int  location 
)

Definition at line 892 of file makefuncs.c.

893{
895
896 n->kind = kind;
897 n->content = content;
898 n->location = location;
899 return n;
900}
List * content
Definition: parsenodes.h:1524
ParseLoc location
Definition: parsenodes.h:1525

References GroupingSet::content, GroupingSet::location, and makeNode.

Referenced by flatten_grouping_sets(), transformGroupClause(), and transformGroupingSet().

◆ makeIndexInfo()

IndexInfo * makeIndexInfo ( int  numattrs,
int  numkeyattrs,
Oid  amoid,
List expressions,
List predicates,
bool  unique,
bool  nulls_not_distinct,
bool  isready,
bool  concurrent,
bool  summarizing,
bool  withoutoverlaps 
)

Definition at line 834 of file makefuncs.c.

838{
840
841 n->ii_NumIndexAttrs = numattrs;
842 n->ii_NumIndexKeyAttrs = numkeyattrs;
845 n->ii_Unique = unique;
846 n->ii_NullsNotDistinct = nulls_not_distinct;
847 n->ii_ReadyForInserts = isready;
848 n->ii_CheckedUnchanged = false;
849 n->ii_IndexUnchanged = false;
850 n->ii_Concurrent = concurrent;
851 n->ii_Summarizing = summarizing;
852 n->ii_WithoutOverlaps = withoutoverlaps;
853
854 /* summarizing indexes cannot contain non-key attributes */
855 Assert(!summarizing || (numkeyattrs == numattrs));
856
857 /* expressions */
858 n->ii_Expressions = expressions;
860
861 /* predicates */
862 n->ii_Predicate = predicates;
863 n->ii_PredicateState = NULL;
864
865 /* exclusion constraints */
866 n->ii_ExclusionOps = NULL;
867 n->ii_ExclusionProcs = NULL;
868 n->ii_ExclusionStrats = NULL;
869
870 /* speculative inserts */
871 n->ii_UniqueOps = NULL;
872 n->ii_UniqueProcs = NULL;
873 n->ii_UniqueStrats = NULL;
874
875 /* initialize index-build state to default */
876 n->ii_BrokenHotChain = false;
877 n->ii_ParallelWorkers = 0;
878
879 /* set up for possible use by index AM */
880 n->ii_Am = amoid;
881 n->ii_AmCache = NULL;
883
884 return n;
885}
MemoryContext CurrentMemoryContext
Definition: mcxt.c:143
bool ii_Unique
Definition: execnodes.h:209
uint16 * ii_ExclusionStrats
Definition: execnodes.h:205
bool ii_BrokenHotChain
Definition: execnodes.h:215
int ii_NumIndexAttrs
Definition: execnodes.h:196
void * ii_AmCache
Definition: execnodes.h:220
bool ii_CheckedUnchanged
Definition: execnodes.h:212
Oid * ii_UniqueOps
Definition: execnodes.h:206
ExprState * ii_PredicateState
Definition: execnodes.h:202
Oid * ii_ExclusionOps
Definition: execnodes.h:203
bool ii_NullsNotDistinct
Definition: execnodes.h:210
int ii_ParallelWorkers
Definition: execnodes.h:218
bool ii_Concurrent
Definition: execnodes.h:214
uint16 * ii_UniqueStrats
Definition: execnodes.h:208
int ii_NumIndexKeyAttrs
Definition: execnodes.h:197
List * ii_ExpressionsState
Definition: execnodes.h:200
List * ii_Expressions
Definition: execnodes.h:199
bool ii_WithoutOverlaps
Definition: execnodes.h:217
bool ii_IndexUnchanged
Definition: execnodes.h:213
Oid * ii_ExclusionProcs
Definition: execnodes.h:204
Oid ii_Am
Definition: execnodes.h:219
bool ii_Summarizing
Definition: execnodes.h:216
Oid * ii_UniqueProcs
Definition: execnodes.h:207
MemoryContext ii_Context
Definition: execnodes.h:221
bool ii_ReadyForInserts
Definition: execnodes.h:211
List * ii_Predicate
Definition: execnodes.h:201

References Assert(), CurrentMemoryContext, IndexInfo::ii_Am, IndexInfo::ii_AmCache, IndexInfo::ii_BrokenHotChain, IndexInfo::ii_CheckedUnchanged, IndexInfo::ii_Concurrent, IndexInfo::ii_Context, IndexInfo::ii_ExclusionOps, IndexInfo::ii_ExclusionProcs, IndexInfo::ii_ExclusionStrats, IndexInfo::ii_Expressions, IndexInfo::ii_ExpressionsState, IndexInfo::ii_IndexUnchanged, IndexInfo::ii_NullsNotDistinct, IndexInfo::ii_NumIndexAttrs, IndexInfo::ii_NumIndexKeyAttrs, IndexInfo::ii_ParallelWorkers, IndexInfo::ii_Predicate, IndexInfo::ii_PredicateState, IndexInfo::ii_ReadyForInserts, IndexInfo::ii_Summarizing, IndexInfo::ii_Unique, IndexInfo::ii_UniqueOps, IndexInfo::ii_UniqueProcs, IndexInfo::ii_UniqueStrats, IndexInfo::ii_WithoutOverlaps, makeNode, and NIL.

Referenced by BuildDummyIndexInfo(), BuildIndexInfo(), CheckIndexCompatible(), DefineIndex(), and index_concurrently_create_copy().

◆ makeJsonBehavior()

JsonBehavior * makeJsonBehavior ( JsonBehaviorType  btype,
Node expr,
int  location 
)

Definition at line 955 of file makefuncs.c.

956{
958
959 behavior->btype = btype;
960 behavior->expr = expr;
961 behavior->location = location;
962
963 return behavior;
964}
Node * expr
Definition: primnodes.h:1796
ParseLoc location
Definition: primnodes.h:1798
JsonBehaviorType btype
Definition: primnodes.h:1795

References JsonBehavior::btype, JsonBehavior::expr, JsonBehavior::location, and makeNode.

Referenced by transformJsonBehavior().

◆ makeJsonFormat()

JsonFormat * makeJsonFormat ( JsonFormatType  type,
JsonEncoding  encoding,
int  location 
)

Definition at line 922 of file makefuncs.c.

923{
925
926 jf->format_type = type;
927 jf->encoding = encoding;
928 jf->location = location;
929
930 return jf;
931}
int32 encoding
Definition: pg_database.h:41
ParseLoc location
Definition: primnodes.h:1658
JsonEncoding encoding
Definition: primnodes.h:1657
JsonFormatType format_type
Definition: primnodes.h:1656
const char * type

References encoding, JsonFormat::encoding, JsonFormat::format_type, JsonFormat::location, makeNode, and type.

Referenced by transformJsonOutput(), transformJsonReturning(), transformJsonSerializeExpr(), and transformJsonTableColumn().

◆ makeJsonIsPredicate()

Node * makeJsonIsPredicate ( Node expr,
JsonFormat format,
JsonValueType  item_type,
bool  unique_keys,
int  location 
)

Definition at line 986 of file makefuncs.c.

988{
990
991 n->expr = expr;
992 n->format = format;
993 n->item_type = item_type;
994 n->unique_keys = unique_keys;
995 n->location = location;
996
997 return (Node *) n;
998}
static char format
JsonFormat * format
Definition: primnodes.h:1741
JsonValueType item_type
Definition: primnodes.h:1742
ParseLoc location
Definition: primnodes.h:1744

References JsonIsPredicate::expr, format, JsonIsPredicate::format, JsonIsPredicate::item_type, JsonIsPredicate::location, makeNode, and JsonIsPredicate::unique_keys.

Referenced by transformJsonIsPredicate().

◆ makeJsonKeyValue()

Node * makeJsonKeyValue ( Node key,
Node value 
)

Definition at line 971 of file makefuncs.c.

972{
974
975 n->key = (Expr *) key;
977
978 return (Node *) n;
979}
#define castNode(_type_, nodeptr)
Definition: nodes.h:182
JsonValueExpr * value
Definition: parsenodes.h:1925

References castNode, JsonKeyValue::key, sort-test::key, makeNode, JsonKeyValue::value, and value.

◆ makeJsonTablePath()

JsonTablePath * makeJsonTablePath ( Const pathvalue,
char *  pathname 
)

Definition at line 1026 of file makefuncs.c.

1027{
1029
1030 Assert(IsA(pathvalue, Const));
1031 path->value = pathvalue;
1032 path->name = pathname;
1033
1034 return path;
1035}
Const * value
Definition: primnodes.h:1876

References Assert(), IsA, makeNode, JsonTablePath::name, and JsonTablePath::value.

Referenced by makeJsonTablePathScan().

◆ makeJsonTablePathSpec()

JsonTablePathSpec * makeJsonTablePathSpec ( char *  string,
char *  name,
int  string_location,
int  name_location 
)

Definition at line 1005 of file makefuncs.c.

1007{
1009
1010 Assert(string != NULL);
1011 pathspec->string = makeStringConst(string, string_location);
1012 if (name != NULL)
1013 pathspec->name = pstrdup(name);
1014
1015 pathspec->name_location = name_location;
1016 pathspec->location = string_location;
1017
1018 return pathspec;
1019}
Node * makeStringConst(char *str, int location)
Definition: makefuncs.c:618
ParseLoc name_location
Definition: parsenodes.h:1862

References Assert(), JsonTablePathSpec::location, makeNode, makeStringConst(), name, JsonTablePathSpec::name, JsonTablePathSpec::name_location, pstrdup(), and JsonTablePathSpec::string.

◆ makeJsonValueExpr()

JsonValueExpr * makeJsonValueExpr ( Expr raw_expr,
Expr formatted_expr,
JsonFormat format 
)

Definition at line 938 of file makefuncs.c.

940{
942
943 jve->raw_expr = raw_expr;
944 jve->formatted_expr = formatted_expr;
945 jve->format = format;
946
947 return jve;
948}
Expr * formatted_expr
Definition: primnodes.h:1689
JsonFormat * format
Definition: primnodes.h:1690
Expr * raw_expr
Definition: primnodes.h:1688

References format, JsonValueExpr::format, JsonValueExpr::formatted_expr, makeNode, and JsonValueExpr::raw_expr.

Referenced by eval_const_expressions_mutator(), transformJsonArrayQueryConstructor(), transformJsonParseArg(), and transformJsonTableColumn().

◆ makeNotNullConstraint()

Constraint * makeNotNullConstraint ( String colname)

Definition at line 493 of file makefuncs.c.

494{
495 Constraint *notnull;
496
497 notnull = makeNode(Constraint);
498 notnull->contype = CONSTR_NOTNULL;
499 notnull->conname = NULL;
500 notnull->is_no_inherit = false;
501 notnull->deferrable = false;
502 notnull->initdeferred = false;
503 notnull->location = -1;
504 notnull->keys = list_make1(colname);
505 notnull->is_enforced = true;
506 notnull->skip_validation = false;
507 notnull->initially_valid = true;
508
509 return notnull;
510}
@ CONSTR_NOTNULL
Definition: parsenodes.h:2790
bool initdeferred
Definition: parsenodes.h:2825
ParseLoc location
Definition: parsenodes.h:2866
List * keys
Definition: parsenodes.h:2837
ConstrType contype
Definition: parsenodes.h:2822
bool is_no_inherit
Definition: parsenodes.h:2829
bool is_enforced
Definition: parsenodes.h:2826
bool initially_valid
Definition: parsenodes.h:2828
bool skip_validation
Definition: parsenodes.h:2827
bool deferrable
Definition: parsenodes.h:2824
char * conname
Definition: parsenodes.h:2823

References Constraint::conname, CONSTR_NOTNULL, Constraint::contype, Constraint::deferrable, Constraint::initdeferred, Constraint::initially_valid, Constraint::is_enforced, Constraint::is_no_inherit, Constraint::keys, list_make1, Constraint::location, makeNode, and Constraint::skip_validation.

Referenced by ATExecSetNotNull(), ATPrepAddPrimaryKey(), transformColumnDefinition(), and transformIndexConstraint().

◆ makeNullConst()

Const * makeNullConst ( Oid  consttype,
int32  consttypmod,
Oid  constcollid 
)

Definition at line 388 of file makefuncs.c.

389{
390 int16 typLen;
391 bool typByVal;
392
393 get_typlenbyval(consttype, &typLen, &typByVal);
394 return makeConst(consttype,
395 consttypmod,
396 constcollid,
397 (int) typLen,
398 (Datum) 0,
399 true,
400 typByVal);
401}
int16_t int16
Definition: c.h:497
void get_typlenbyval(Oid typid, int16 *typlen, bool *typbyval)
Definition: lsyscache.c:2391
uintptr_t Datum
Definition: postgres.h:69

References get_typlenbyval(), and makeConst().

Referenced by adjust_appendrel_attrs_mutator(), ATExecAddColumn(), build_subplan(), BuildOnConflictExcludedTargetlist(), coerce_record_to_complex(), eval_const_expressions_mutator(), evaluate_function(), ExecInitExprRec(), expandRTE(), expandTupleDesc(), remove_unused_subquery_outputs(), rewriteValuesRTE(), rewriteValuesRTEToNulls(), set_plan_refs(), and transformAssignedExpr().

◆ makeRangeVar()

RangeVar * makeRangeVar ( char *  schemaname,
char *  relname,
int  location 
)

◆ makeRelabelType()

RelabelType * makeRelabelType ( Expr arg,
Oid  rtype,
int32  rtypmod,
Oid  rcollid,
CoercionForm  rformat 
)

Definition at line 453 of file makefuncs.c.

455{
457
458 r->arg = arg;
459 r->resulttype = rtype;
460 r->resulttypmod = rtypmod;
461 r->resultcollid = rcollid;
462 r->relabelformat = rformat;
463 r->location = -1;
464
465 return r;
466}
Oid resulttype
Definition: primnodes.h:1202
ParseLoc location
Definition: primnodes.h:1209
Expr * arg
Definition: primnodes.h:1201

References arg, RelabelType::arg, RelabelType::location, makeNode, and RelabelType::resulttype.

Referenced by assign_hypothetical_collations(), buildMergedJoinVar(), coerce_type(), and make_partition_op_expr().

◆ makeSimpleA_Expr()

A_Expr * makeSimpleA_Expr ( A_Expr_Kind  kind,
char *  name,
Node lexpr,
Node rexpr,
int  location 
)

Definition at line 48 of file makefuncs.c.

50{
52
53 a->kind = kind;
54 a->name = list_make1(makeString(name));
55 a->lexpr = lexpr;
56 a->rexpr = rexpr;
57 a->location = location;
58 return a;
59}
String * makeString(char *str)
Definition: value.c:63

References a, list_make1, makeNode, makeString(), and name.

Referenced by test_rls_hooks_permissive(), test_rls_hooks_restrictive(), transformAExprBetween(), transformCaseExpr(), and transformJoinUsingClause().

◆ makeStringConst()

Node * makeStringConst ( char *  str,
int  location 
)

Definition at line 618 of file makefuncs.c.

619{
621
622 n->val.sval.type = T_String;
623 n->val.sval.sval = str;
624 n->location = location;
625
626 return (Node *) n;
627}
const char * str
union ValUnion val
Definition: parsenodes.h:373
ParseLoc location
Definition: parsenodes.h:375
char * sval
Definition: value.h:68
String sval
Definition: parsenodes.h:364

References A_Const::location, makeNode, str, ValUnion::sval, String::sval, and A_Const::val.

Referenced by makeJsonTablePathSpec(), and transformJsonTableColumn().

◆ makeTargetEntry()

TargetEntry * makeTargetEntry ( Expr expr,
AttrNumber  resno,
char *  resname,
bool  resjunk 
)

Definition at line 289 of file makefuncs.c.

293{
295
296 tle->expr = expr;
297 tle->resno = resno;
298 tle->resname = resname;
299
300 /*
301 * We always set these fields to 0. If the caller wants to change them he
302 * must do so explicitly. Few callers do that, so omitting these
303 * arguments reduces the chance of error.
304 */
305 tle->ressortgroupref = 0;
306 tle->resorigtbl = InvalidOid;
307 tle->resorigcol = 0;
308
309 tle->resjunk = resjunk;
310
311 return tle;
312}
Expr * expr
Definition: primnodes.h:2219
AttrNumber resno
Definition: primnodes.h:2221
Index ressortgroupref
Definition: primnodes.h:2225

References TargetEntry::expr, InvalidOid, makeNode, TargetEntry::resno, and TargetEntry::ressortgroupref.

Referenced by add_row_identity_var(), add_to_flat_tlist(), ApplyRetrieveRule(), build_index_tlist(), build_minmax_path(), build_path_tlist(), build_physical_tlist(), build_remote_returning(), BuildOnConflictExcludedTargetlist(), check_sql_stmt_retval(), coerce_fn_result_column(), convert_combining_aggrefs(), convert_EXISTS_to_ANY(), create_unique_plan(), determineRecursiveColTypes(), ExecInitSubPlan(), expand_generated_columns_internal(), expand_inherited_rtentry(), expand_insert_targetlist(), expand_virtual_generated_columns(), expandNSItemAttrs(), ExpandRowReference(), foreign_grouping_ok(), generate_append_tlist(), generate_setop_tlist(), make_tlist_from_pathtarget(), prepare_sort_from_pathkeys(), preprocess_targetlist(), pull_up_constant_function(), pull_up_simple_values(), rebuild_fdw_scan_tlist(), rewriteSearchAndCycle(), rewriteTargetListIU(), transformAggregateCall(), transformMergeStmt(), transformMultiAssignRef(), transformReturnStmt(), transformSetOperationStmt(), transformSetOperationTree(), and transformTargetEntry().

◆ makeTypeName()

TypeName * makeTypeName ( char *  typnam)

Definition at line 519 of file makefuncs.c.

520{
522}
TypeName * makeTypeNameFromNameList(List *names)
Definition: makefuncs.c:531

References list_make1, makeString(), and makeTypeNameFromNameList().

Referenced by plpgsql_parse_wordrowtype().

◆ makeTypeNameFromNameList()

◆ makeTypeNameFromOid()

TypeName * makeTypeNameFromOid ( Oid  typeOid,
int32  typmod 
)

Definition at line 547 of file makefuncs.c.

548{
550
551 n->typeOid = typeOid;
552 n->typemod = typmod;
553 n->location = -1;
554 return n;
555}
Oid typeOid
Definition: parsenodes.h:280

References TypeName::location, makeNode, TypeName::typemod, and TypeName::typeOid.

Referenced by generateSerialExtraStmts(), makeColumnDef(), and transformAlterTableStmt().

◆ makeVacuumRelation()

VacuumRelation * makeVacuumRelation ( RangeVar relation,
Oid  oid,
List va_cols 
)

Definition at line 907 of file makefuncs.c.

908{
910
911 v->relation = relation;
912 v->oid = oid;
913 v->va_cols = va_cols;
914 return v;
915}
RangeVar * relation
Definition: parsenodes.h:3951

References makeNode, VacuumRelation::oid, VacuumRelation::relation, and VacuumRelation::va_cols.

Referenced by autovacuum_do_vac_analyze(), expand_vacuum_rel(), and get_all_vacuum_rels().

◆ makeVar()

Var * makeVar ( int  varno,
AttrNumber  varattno,
Oid  vartype,
int32  vartypmod,
Oid  varcollid,
Index  varlevelsup 
)

Definition at line 66 of file makefuncs.c.

72{
73 Var *var = makeNode(Var);
74
75 var->varno = varno;
76 var->varattno = varattno;
77 var->vartype = vartype;
78 var->vartypmod = vartypmod;
79 var->varcollid = varcollid;
80 var->varlevelsup = varlevelsup;
81
82 /*
83 * Only a few callers need to make Var nodes with varreturningtype
84 * different from VAR_RETURNING_DEFAULT, non-null varnullingrels, or with
85 * varnosyn/varattnosyn different from varno/varattno. We don't provide
86 * separate arguments for them, but just initialize them to sensible
87 * default values. This reduces code clutter and chance of error for most
88 * callers.
89 */
91 var->varnullingrels = NULL;
92 var->varnosyn = (Index) varno;
93 var->varattnosyn = varattno;
94
95 /* Likewise, we just set location to "unknown" here */
96 var->location = -1;
97
98 return var;
99}
unsigned int Index
Definition: c.h:585
@ VAR_RETURNING_DEFAULT
Definition: primnodes.h:256
Definition: primnodes.h:262
ParseLoc location
Definition: primnodes.h:310
AttrNumber varattno
Definition: primnodes.h:274
int varno
Definition: primnodes.h:269
VarReturningType varreturningtype
Definition: primnodes.h:297
Index varlevelsup
Definition: primnodes.h:294

References Var::location, makeNode, VAR_RETURNING_DEFAULT, Var::varattno, Var::varlevelsup, Var::varno, and Var::varreturningtype.

Referenced by add_row_identity_columns(), ATPrepAlterColumnType(), build_index_tlist(), build_physical_tlist(), build_remote_returning(), buildGroupedVar(), BuildOnConflictExcludedTargetlist(), buildVarFromNSColumn(), eval_const_expressions_mutator(), expand_inherited_rtentry(), expand_single_inheritance_child(), expand_virtual_generated_columns(), expandNSItemVars(), expandRTE(), expandTupleDesc(), fix_indexqual_operand(), generate_append_tlist(), generate_setop_tlist(), get_qual_for_hash(), get_qual_for_list(), get_range_key_properties(), get_range_nulltest(), get_relation_constraints(), make_inh_translation_list(), make_path_cat_expr(), make_path_rowexpr(), makeVarFromTargetEntry(), makeWholeRowVar(), NotNullImpliedByRelConstraints(), PartConstraintImpliedByRelConstraint(), postgresAddForeignUpdateTargets(), preprocess_targetlist(), rewriteSearchAndCycle(), scanNSItemForColumn(), set_baserel_partition_key_exprs(), set_dummy_tlist_references(), transformAssignedExpr(), and transformSetOperationStmt().

◆ makeVarFromTargetEntry()

Var * makeVarFromTargetEntry ( int  varno,
TargetEntry tle 
)

Definition at line 107 of file makefuncs.c.

109{
110 return makeVar(varno,
111 tle->resno,
112 exprType((Node *) tle->expr),
113 exprTypmod((Node *) tle->expr),
114 exprCollation((Node *) tle->expr),
115 0);
116}
Var * makeVar(int varno, AttrNumber varattno, Oid vartype, int32 vartypmod, Oid varcollid, Index varlevelsup)
Definition: makefuncs.c:66
Oid exprType(const Node *expr)
Definition: nodeFuncs.c:42
int32 exprTypmod(const Node *expr)
Definition: nodeFuncs.c:301
Oid exprCollation(const Node *expr)
Definition: nodeFuncs.c:821

References TargetEntry::expr, exprCollation(), exprType(), exprTypmod(), makeVar(), and TargetEntry::resno.

Referenced by build_physical_tlist(), coerce_fn_result_column(), generate_subquery_vars(), make_setop_translation_list(), search_indexed_tlist_for_non_var(), search_indexed_tlist_for_phv(), search_indexed_tlist_for_sortgroupref(), and transformInsertStmt().

◆ makeWholeRowVar()

Var * makeWholeRowVar ( RangeTblEntry rte,
int  varno,
Index  varlevelsup,
bool  allowScalar 
)

Definition at line 137 of file makefuncs.c.

141{
142 Var *result;
143 Oid toid;
144 Node *fexpr;
145
146 switch (rte->rtekind)
147 {
148 case RTE_RELATION:
149 /* relation: the rowtype is a named composite type */
150 toid = get_rel_type_id(rte->relid);
151 if (!OidIsValid(toid))
153 (errcode(ERRCODE_WRONG_OBJECT_TYPE),
154 errmsg("relation \"%s\" does not have a composite type",
155 get_rel_name(rte->relid))));
156 result = makeVar(varno,
158 toid,
159 -1,
161 varlevelsup);
162 break;
163
164 case RTE_SUBQUERY:
165
166 /*
167 * For a standard subquery, the Var should be of RECORD type.
168 * However, if we're looking at a subquery that was expanded from
169 * a view or SRF (only possible during planning), we must use the
170 * appropriate rowtype, so that the resulting Var has the same
171 * type that we would have produced from the original RTE.
172 */
173 if (OidIsValid(rte->relid))
174 {
175 /* Subquery was expanded from a view */
176 toid = get_rel_type_id(rte->relid);
177 if (!OidIsValid(toid))
179 (errcode(ERRCODE_WRONG_OBJECT_TYPE),
180 errmsg("relation \"%s\" does not have a composite type",
181 get_rel_name(rte->relid))));
182 }
183 else if (rte->functions)
184 {
185 /*
186 * Subquery was expanded from a set-returning function. That
187 * would not have happened if there's more than one function
188 * or ordinality was requested. We also needn't worry about
189 * the allowScalar case, since the planner doesn't use that.
190 * Otherwise this must match the RTE_FUNCTION code below.
191 */
192 Assert(!allowScalar);
193 fexpr = ((RangeTblFunction *) linitial(rte->functions))->funcexpr;
194 toid = exprType(fexpr);
195 if (!type_is_rowtype(toid))
196 toid = RECORDOID;
197 }
198 else
199 {
200 /* Normal subquery-in-FROM */
201 toid = RECORDOID;
202 }
203 result = makeVar(varno,
205 toid,
206 -1,
208 varlevelsup);
209 break;
210
211 case RTE_FUNCTION:
212
213 /*
214 * If there's more than one function, or ordinality is requested,
215 * force a RECORD result, since there's certainly more than one
216 * column involved and it can't be a known named type.
217 */
218 if (rte->funcordinality || list_length(rte->functions) != 1)
219 {
220 /* always produces an anonymous RECORD result */
221 result = makeVar(varno,
223 RECORDOID,
224 -1,
226 varlevelsup);
227 break;
228 }
229
230 fexpr = ((RangeTblFunction *) linitial(rte->functions))->funcexpr;
231 toid = exprType(fexpr);
232 if (type_is_rowtype(toid))
233 {
234 /* func returns composite; same as relation case */
235 result = makeVar(varno,
237 toid,
238 -1,
240 varlevelsup);
241 }
242 else if (allowScalar)
243 {
244 /* func returns scalar; just return its output as-is */
245 result = makeVar(varno,
246 1,
247 toid,
248 -1,
249 exprCollation(fexpr),
250 varlevelsup);
251 }
252 else
253 {
254 /* func returns scalar, but we want a composite result */
255 result = makeVar(varno,
257 RECORDOID,
258 -1,
260 varlevelsup);
261 }
262 break;
263
264 default:
265
266 /*
267 * RTE is a join, tablefunc, VALUES, CTE, etc. We represent these
268 * cases as a whole-row Var of RECORD type. (Note that in most
269 * cases the Var will be expanded to a RowExpr during planning,
270 * but that is not our concern here.)
271 */
272 result = makeVar(varno,
274 RECORDOID,
275 -1,
277 varlevelsup);
278 break;
279 }
280
281 return result;
282}
#define InvalidAttrNumber
Definition: attnum.h:23
#define OidIsValid(objectId)
Definition: c.h:746
int errcode(int sqlerrcode)
Definition: elog.c:854
int errmsg(const char *fmt,...)
Definition: elog.c:1071
#define ERROR
Definition: elog.h:39
#define ereport(elevel,...)
Definition: elog.h:149
char * get_rel_name(Oid relid)
Definition: lsyscache.c:2068
bool type_is_rowtype(Oid typid)
Definition: lsyscache.c:2795
Oid get_rel_type_id(Oid relid)
Definition: lsyscache.c:2119
@ RTE_SUBQUERY
Definition: parsenodes.h:1027
@ RTE_FUNCTION
Definition: parsenodes.h:1029
@ RTE_RELATION
Definition: parsenodes.h:1026
unsigned int Oid
Definition: postgres_ext.h:30
bool funcordinality
Definition: parsenodes.h:1193
List * functions
Definition: parsenodes.h:1191
RTEKind rtekind
Definition: parsenodes.h:1061

References Assert(), ereport, errcode(), errmsg(), ERROR, exprCollation(), exprType(), RangeTblEntry::funcordinality, RangeTblEntry::functions, get_rel_name(), get_rel_type_id(), InvalidAttrNumber, InvalidOid, linitial, list_length(), makeVar(), OidIsValid, RTE_FUNCTION, RTE_RELATION, RTE_SUBQUERY, RangeTblEntry::rtekind, and type_is_rowtype().

Referenced by ApplyRetrieveRule(), expand_inherited_rtentry(), preprocess_targetlist(), transform_MERGE_to_join(), and transformWholeRowRef().