You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: tests/core/test_model.py
+6-3Lines changed: 6 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -5067,7 +5067,8 @@ def test_when_matched():
5067
5067
unique_key ("purchase_order_id"),
5068
5068
when_matched (
5069
5069
WHEN MATCHED AND __MERGE_SOURCE__._operation = 1 THEN DELETE
5070
-
WHEN MATCHED AND __MERGE_SOURCE__._operation <> 1 THEN UPDATE SET __MERGE_TARGET__.purchase_order_id = 1
5070
+
WHEN MATCHED AND __MERGE_SOURCE__._operation <> 1 THEN UPDATE SET
5071
+
__MERGE_TARGET__.purchase_order_id = 1
5071
5072
),
5072
5073
batch_concurrency 1,
5073
5074
forward_only FALSE,
@@ -5118,7 +5119,8 @@ def fingerprint_merge(
5118
5119
kind INCREMENTAL_BY_UNIQUE_KEY (
5119
5120
unique_key ("purchase_order_id"),
5120
5121
when_matched (
5121
-
WHEN MATCHED AND __MERGE_SOURCE__.salary <> __MERGE_TARGET__.salary THEN UPDATE SET ARRAY('target.update_datetime = source.update_datetime', 'target.salary = source.salary')
5122
+
WHEN MATCHED AND __MERGE_SOURCE__.salary <> __MERGE_TARGET__.salary THEN UPDATE SET
0 commit comments