Fix JsonExpr deparsing to quote variable names in the PASSING clause.

a93e2a1e25a6d5410abb1446637c4d9a4f24e35d
m3hm3t/pg18_dev_relation_oid_0
Mehmet Yilmaz 2025-05-30 08:59:42 +00:00
parent 5bb635ab6c
commit 3dccc99d70
1 changed files with 1 additions and 1 deletions

View File

@ -6976,7 +6976,7 @@ get_rule_expr(Node *node, deparse_context *context,
get_rule_expr((Node *) lfirst(lc2), context, showimplicit); get_rule_expr((Node *) lfirst(lc2), context, showimplicit);
appendStringInfo(buf, " AS %s", appendStringInfo(buf, " AS %s",
((String *) lfirst_node(String, lc1))->sval); quote_identifier(lfirst_node(String, lc1)->sval));
} }
} }