We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a0766b2 commit e54bfb5Copy full SHA for e54bfb5
src/query/settings/src/settings_default.rs
@@ -496,7 +496,7 @@ impl DefaultSettings {
496
range: Some(SettingRange::Numeric(0..=u64::MAX)),
497
}),
498
("nested_loop_join_threshold", DefaultSettingValue {
499
- value: UserSettingValue::UInt64(10000),
+ value: UserSettingValue::UInt64(0),
500
desc: "Set the threshold for use nested loop join. Setting it to 0 disable nested loop join.",
501
mode: SettingMode::Both,
502
scope: SettingScope::Both,
tests/sqllogictests/suites/query/join/join.test
@@ -291,7 +291,7 @@ select * from t join t1 on t.a = t1.a
291
1 1.0 0
292
2 2.0 1
293
294
-query ITB
+query ITB rowsort
295
select * from t join t1 on t.a = t1.b
296
----
297
3 1 1
0 commit comments