Skip to content

Commit

Permalink
Fix example query in MERGE docs
Browse files Browse the repository at this point in the history
  • Loading branch information
chenjian2664 authored and hashhar committed Mar 18, 2023
1 parent b79acb4 commit add5557
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/src/main/sphinx/develop/supporting-merge.rst
Expand Up @@ -109,7 +109,7 @@ the ``MERGE`` is executed as if the ``SearchedCaseExpression`` were written as::
CASE
WHEN present AND s.address = 'Berkeley' THEN
-- Null values for delete; present=true; operation DELETE=2, case_number=0
row(null, null, null, false, 2, 0)
row(null, null, null, true, 2, 0)
WHEN present AND s.customer = 'Joe Shmoe' THEN
-- Update column values; present=true; operation UPDATE=3, case_number=1
row(t.customer, t.purchases + 100.0, t.address, true, 3, 1)
Expand Down

0 comments on commit add5557

Please sign in to comment.