aboutsummaryrefslogtreecommitdiff
path: root/src/backend/utils/adt/numeric.c
diff options
context:
space:
mode:
authorDean Rasheed <dean.a.rasheed@gmail.com>2024-10-03 12:53:03 +0100
committerDean Rasheed <dean.a.rasheed@gmail.com>2024-10-03 12:53:03 +0100
commitdddb5640c6d32f3d48994dac0f4e80d0f4567262 (patch)
treed8638b0436e49ca9083c6881e582ef3641154d4c /src/backend/utils/adt/numeric.c
parent19531968e84557693576928b3184ccc549aa44c8 (diff)
downloadpostgresql-dddb5640c6d32f3d48994dac0f4e80d0f4567262.tar.gz
postgresql-dddb5640c6d32f3d48994dac0f4e80d0f4567262.zip
Fix incorrect non-strict join recheck in MERGE WHEN NOT MATCHED BY SOURCE.
If a MERGE command contains WHEN NOT MATCHED BY SOURCE actions, the merge join condition is used by the executor to distinguish MATCHED from NOT MATCHED BY SOURCE cases. However, this qual is executed using the output from the join subplan node, which nulls the output from the source relation in the not matched case, and so the result may be incorrect if the join condition is "non-strict" -- for example, something like "src.col IS NOT DISTINCT FROM tgt.col". Fix this by enhancing the join recheck condition with an additional "src IS NOT NULL" check, so that it does the right thing when evaluated using the output from the join subplan. Noted by Tom Lane while investigating bug #18634 from Alexander Lakhin. Back-patch to v17, where WHEN NOT MATCHED BY SOURCE support was added to MERGE. Discussion: https://postgr.es/m/18634-db5299c937877f2b%40postgresql.org
Diffstat (limited to 'src/backend/utils/adt/numeric.c')
0 files changed, 0 insertions, 0 deletions