Skip to content

Commit

Permalink
disable by default
Browse files Browse the repository at this point in the history
  • Loading branch information
SkyFan2002 committed Sep 13, 2024
1 parent 4032cb5 commit 8889fab
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/query/settings/src/settings_default.rs
Original file line number Diff line number Diff line change
Expand Up @@ -593,7 +593,7 @@ impl DefaultSettings {
(
"enable_compact_after_multi_table_insert",
DefaultSettingValue {
value: UserSettingValue::UInt64(1),
value: UserSettingValue::UInt64(0),
desc: "Enables recluster and compact after multi-table insert.",
mode: SettingMode::Both,
range: Some(SettingRange::Numeric(0..=1)),
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
statement ok
set enable_compact_after_multi_table_insert = 1;

statement ok
create or replace database multi_table_insert_auto_compact;

Expand Down

0 comments on commit 8889fab

Please sign in to comment.