Skip to content

Commit 03a6257

Browse files
authored
chore: default enalbe merge into (#15034)
1 parent 74d540a commit 03a6257

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/query/settings/src/settings_default.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -290,7 +290,7 @@ impl DefaultSettings {
290290
mode: SettingMode::Both,
291291
range: Some(SettingRange::Numeric(0..=u64::MAX)),
292292
}),
293-
("inlist_to_join_threshold", DefaultSettingValue{
293+
("inlist_to_join_threshold", DefaultSettingValue {
294294
value: UserSettingValue::UInt64(1024),
295295
desc: "Set the threshold for converting IN list to JOIN.",
296296
mode: SettingMode::Both,
@@ -493,7 +493,7 @@ impl DefaultSettings {
493493
range: Some(SettingRange::Numeric(0..=1)),
494494
}),
495495
("enable_experimental_merge_into", DefaultSettingValue {
496-
value: UserSettingValue::UInt64(0),
496+
value: UserSettingValue::UInt64(1),
497497
desc: "Enables the experimental feature for 'MERGE INTO'.",
498498
mode: SettingMode::Both,
499499
range: Some(SettingRange::Numeric(0..=1)),

0 commit comments

Comments
 (0)