From 70f2efa0d15d6533594814041dac2651efe78e8e Mon Sep 17 00:00:00 2001 From: Peter Eisentraut Date: Mon, 11 Mar 2024 09:15:33 +0100 Subject: [PATCH v3 4/8] Remove custom _jumbleRangeTblEntry() This is part of an effort to reduce the number of special cases in the automatically generated node support functions. This patch removes _jumbleRangeTblEntry() and instead adds per-field query_jumble_ignore annotations to match the behavior of the previous custom code. The pg_stat_statements test suite has some coverage of this. It gets rid of switch on rtekind; this should be technically correct, since we do the equal and copy functions like this also. The list of fields to jumble has been checked and corrected as of 8b29a119fd. Discussion: https://www.postgresql.org/message-id/flat/4b27fc50-8cd6-46f5-ab20-88dbaadca645@eisentraut.org --- src/backend/nodes/queryjumblefuncs.c | 49 ---------------------------- src/include/nodes/parsenodes.h | 40 +++++++++++------------ 2 files changed, 20 insertions(+), 69 deletions(-) diff --git a/src/backend/nodes/queryjumblefuncs.c b/src/backend/nodes/queryjumblefuncs.c index 2c116c8728..be823a7f8f 100644 --- a/src/backend/nodes/queryjumblefuncs.c +++ b/src/backend/nodes/queryjumblefuncs.c @@ -353,52 +353,3 @@ _jumbleA_Const(JumbleState *jstate, Node *node) } } } - -static void -_jumbleRangeTblEntry(JumbleState *jstate, Node *node) -{ - RangeTblEntry *expr = (RangeTblEntry *) node; - - JUMBLE_FIELD(rtekind); - switch (expr->rtekind) - { - case RTE_RELATION: - JUMBLE_FIELD(relid); - JUMBLE_FIELD(inh); - JUMBLE_NODE(tablesample); - break; - case RTE_SUBQUERY: - JUMBLE_NODE(subquery); - break; - case RTE_JOIN: - JUMBLE_FIELD(jointype); - break; - case RTE_FUNCTION: - JUMBLE_NODE(functions); - JUMBLE_FIELD(funcordinality); - break; - case RTE_TABLEFUNC: - JUMBLE_NODE(tablefunc); - break; - case RTE_VALUES: - JUMBLE_NODE(values_lists); - break; - case RTE_CTE: - - /* - * Depending on the CTE name here isn't ideal, but it's the only - * info we have to identify the referenced WITH item. - */ - JUMBLE_STRING(ctename); - JUMBLE_FIELD(ctelevelsup); - break; - case RTE_NAMEDTUPLESTORE: - JUMBLE_STRING(enrname); - break; - case RTE_RESULT: - break; - default: - elog(ERROR, "unrecognized RTE kind: %d", (int) expr->rtekind); - break; - } -} diff --git a/src/include/nodes/parsenodes.h b/src/include/nodes/parsenodes.h index a3c4e86f4c..aae50abdb0 100644 --- a/src/include/nodes/parsenodes.h +++ b/src/include/nodes/parsenodes.h @@ -1022,7 +1022,7 @@ typedef enum RTEKind typedef struct RangeTblEntry { - pg_node_attr(custom_read_write, custom_query_jumble) + pg_node_attr(custom_read_write) NodeTag type; @@ -1071,11 +1071,11 @@ typedef struct RangeTblEntry /* inheritance requested? */ bool inh; /* relation kind (see pg_class.relkind) */ - char relkind; + char relkind pg_node_attr(query_jumble_ignore); /* lock level that query requires on the rel */ - int rellockmode; + int rellockmode pg_node_attr(query_jumble_ignore); /* index of RTEPermissionInfo entry, or 0 */ - Index perminfoindex; + Index perminfoindex pg_node_attr(query_jumble_ignore); /* sampling info, or NULL */ struct TableSampleClause *tablesample; @@ -1085,7 +1085,7 @@ typedef struct RangeTblEntry /* the sub-query */ Query *subquery; /* is from security_barrier view? */ - bool security_barrier; + bool security_barrier pg_node_attr(query_jumble_ignore); /* * Fields valid for a join RTE (else NULL/zero): @@ -1132,20 +1132,20 @@ typedef struct RangeTblEntry */ JoinType jointype; /* number of merged (JOIN USING) columns */ - int joinmergedcols; + int joinmergedcols pg_node_attr(query_jumble_ignore); /* list of alias-var expansions */ - List *joinaliasvars; + List *joinaliasvars pg_node_attr(query_jumble_ignore); /* left-side input column numbers */ - List *joinleftcols; + List *joinleftcols pg_node_attr(query_jumble_ignore); /* right-side input column numbers */ - List *joinrightcols; + List *joinrightcols pg_node_attr(query_jumble_ignore); /* * join_using_alias is an alias clause attached directly to JOIN/USING. It * is different from the alias field (below) in that it does not hide the * range variables of the tables being joined. */ - Alias *join_using_alias; + Alias *join_using_alias pg_node_attr(query_jumble_ignore); /* * Fields valid for a function RTE (else NIL/zero): @@ -1179,7 +1179,7 @@ typedef struct RangeTblEntry /* number of query levels up */ Index ctelevelsup; /* is this a recursive self-reference? */ - bool self_reference; + bool self_reference pg_node_attr(query_jumble_ignore); /* * Fields valid for CTE, VALUES, ENR, and TableFunc RTEs (else NIL): @@ -1200,11 +1200,11 @@ typedef struct RangeTblEntry * for zero coltype is the standard way to detect a dropped column. */ /* OID list of column type OIDs */ - List *coltypes; + List *coltypes pg_node_attr(query_jumble_ignore); /* integer list of column typmods */ - List *coltypmods; + List *coltypmods pg_node_attr(query_jumble_ignore); /* OID list of column collation OIDs */ - List *colcollations; + List *colcollations pg_node_attr(query_jumble_ignore); /* * Fields valid for ENR RTEs (else NULL/zero): @@ -1212,21 +1212,21 @@ typedef struct RangeTblEntry /* name of ephemeral named relation */ char *enrname; /* estimated or actual from caller */ - Cardinality enrtuples; + Cardinality enrtuples pg_node_attr(query_jumble_ignore); /* * Fields valid in all RTEs: */ /* user-written alias clause, if any */ - Alias *alias; + Alias *alias pg_node_attr(query_jumble_ignore); /* expanded reference names */ - Alias *eref; + Alias *eref pg_node_attr(query_jumble_ignore); /* was LATERAL specified? */ - bool lateral; + bool lateral pg_node_attr(query_jumble_ignore); /* present in FROM clause? */ - bool inFromCl; + bool inFromCl pg_node_attr(query_jumble_ignore); /* security barrier quals to apply, if any */ - List *securityQuals; + List *securityQuals pg_node_attr(query_jumble_ignore); } RangeTblEntry; /* -- 2.44.0