Skip to content

Commit e54bfb5

Browse files
committed
x
1 parent a0766b2 commit e54bfb5

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/query/settings/src/settings_default.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -496,7 +496,7 @@ impl DefaultSettings {
496496
range: Some(SettingRange::Numeric(0..=u64::MAX)),
497497
}),
498498
("nested_loop_join_threshold", DefaultSettingValue {
499-
value: UserSettingValue::UInt64(10000),
499+
value: UserSettingValue::UInt64(0),
500500
desc: "Set the threshold for use nested loop join. Setting it to 0 disable nested loop join.",
501501
mode: SettingMode::Both,
502502
scope: SettingScope::Both,

tests/sqllogictests/suites/query/join/join.test

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -291,7 +291,7 @@ select * from t join t1 on t.a = t1.a
291291
1 1.0 0
292292
2 2.0 1
293293

294-
query ITB
294+
query ITB rowsort
295295
select * from t join t1 on t.a = t1.b
296296
----
297297
3 1 1

0 commit comments

Comments
 (0)