summaryrefslogtreecommitdiff
path: root/src/backend
diff options
context:
space:
mode:
authorRichard Guo <rguo@postgresql.org>2025-09-16 18:42:20 +0900
committerRichard Guo <rguo@postgresql.org>2025-09-16 18:42:20 +0900
commitb63a822452152a7bd613fd4b28e0967e626e274e (patch)
treec842738783cc29611804939bcb1fa56293a2e8cf /src/backend
parentcfa6cd29271e67c43c1040e3420c1145fdcdceb7 (diff)
Treat JsonConstructorExpr as non-strict
JsonConstructorExpr can produce non-NULL output with a NULL input, so it should be treated as a non-strict construct. Failing to do so can lead to incorrect query behavior. For example, in the reported case, when pulling up a subquery that is under an outer join, if the subquery's target list contains a JsonConstructorExpr that uses subquery variables and it is mistakenly treated as strict, it will be pulled up without being wrapped in a PlaceHolderVar. As a result, the expression will be evaluated at the wrong place and will not be forced to null when the outer join should do so. Back-patch to v16 where JsonConstructorExpr was introduced. Bug: #19046 Reported-by: Runyuan He <runyuan@berkeley.edu> Author: Tender Wang <tndrwang@gmail.com> Co-authored-by: Richard Guo <guofenglinux@gmail.com> Discussion: https://postgr.es/m/19046-765b6602b0a8cfdf@postgresql.org Backpatch-through: 16
Diffstat (limited to 'src/backend')
-rw-r--r--src/backend/optimizer/util/clauses.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/backend/optimizer/util/clauses.c b/src/backend/optimizer/util/clauses.c
index ae0bd073ca9..f49bde7595b 100644
--- a/src/backend/optimizer/util/clauses.c
+++ b/src/backend/optimizer/util/clauses.c
@@ -1115,6 +1115,8 @@ contain_nonstrict_functions_walker(Node *node, void *context)
return true;
if (IsA(node, BooleanTest))
return true;
+ if (IsA(node, JsonConstructorExpr))
+ return true;
/* Check other function-containing nodes */
if (check_functions_in_node(node, contain_nonstrict_functions_checker,