Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
max-muoto committed Sep 7, 2024
1 parent 8fc9faa commit c8a9b0c
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions tests/test_build.py
Original file line number Diff line number Diff line change
Expand Up @@ -768,6 +768,7 @@ def test_build(self):
into="target_table",
using="source_table",
on="target_table.id = source_table.id",
dialect="postgres",
),
"MERGE INTO target_table USING source_table ON target_table.id = source_table.id WHEN MATCHED THEN DO NOTHING WHEN NOT MATCHED THEN INSERT (id, name) VALUES (source.id, source.name)",
),
Expand Down

0 comments on commit c8a9b0c

Please sign in to comment.