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/sqllogictests/suites/mode/standalone/explain/09_0039_target_build_merge_into_standalone.test
+8-2Lines changed: 8 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -50,14 +50,17 @@ insert into source_optimization values(5,'b5','c5'),(6,'b6','c6');
50
50
statement error 4001
51
51
merge into target_build_optimization as t1 using source_optimization as t2 on t1.a = t2.a and t1.b = t2.b when matched then update * when not matched then insert *;
52
52
53
+
statement ok
54
+
set join_spilling_memory_ratio = 0;
55
+
53
56
### 2.2 make sure the plan is expected
54
57
query T
55
58
explain merge into target_build_optimization as t1 using source_optimization as t2 on t1.a = t2.a and t1.b = t2.b when matched then update set t1.a = t2.a,t1.b = t2.b,t1.c = t2.c when not matched then insert *;
0 commit comments