Skip to content

Commit

Permalink
fix test case 09_0040_merge_into_issue_15643.test
Browse files Browse the repository at this point in the history
  • Loading branch information
dantengsky committed May 26, 2024
1 parent 904173d commit 95e4154
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,7 @@ insert into s(k) values('k');

# expects 1 row updated, 0 row inserted
query II
merge into t using s on t.k = s.k
when matched then update *
when not matched then insert *;
merge into t using s on t.k = s.k when matched then update * when not matched then insert *;
---
0 1

Expand Down

0 comments on commit 95e4154

Please sign in to comment.