This is an automated email from the ASF dual-hosted git repository. maxyang pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/cloudberry.git
commit 5eb5061024b58acdcadcb0421e49213e187c7b23 Author: wenru yan <[email protected]> AuthorDate: Tue Jun 13 09:23:31 2023 +0000 Add missing nodes for function raw_expression_tree_walker(). --- src/backend/nodes/nodeFuncs.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/backend/nodes/nodeFuncs.c b/src/backend/nodes/nodeFuncs.c index e1538de8b9..a8e514d80a 100644 --- a/src/backend/nodes/nodeFuncs.c +++ b/src/backend/nodes/nodeFuncs.c @@ -4290,6 +4290,8 @@ raw_expression_tree_walker(Node *node, case T_CommonTableExpr: /* search_clause and cycle_clause are not interesting here */ return walker(((CommonTableExpr *) node)->ctequery, context); + case T_TableValueExpr: + return walker(((TableValueExpr *) node)->subquery, context); default: elog(ERROR, "unrecognized node type: %d", (int) nodeTag(node)); --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
