Merging upstream version 26.19.0.
Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
parent
58527c3d26
commit
a99682f526
98 changed files with 67345 additions and 65319 deletions
8
tests/fixtures/pretty.sql
vendored
8
tests/fixtures/pretty.sql
vendored
|
@ -449,3 +449,11 @@ SELECT
|
|||
FROM foo
|
||||
WHERE
|
||||
1 = 1 AND /* first comment */ foo.a /* second comment */ = 1;
|
||||
|
||||
MERGE INTO t USING s ON t.id = s.id WHEN MATCHED THEN UPDATE SET status = s.status, amount = s.amount;
|
||||
MERGE INTO t
|
||||
USING s
|
||||
ON t.id = s.id
|
||||
WHEN MATCHED THEN UPDATE SET
|
||||
status = s.status,
|
||||
amount = s.amount;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue