Skip to content

Commit 98b1107

Browse files
committed
disable write_marks_for_substreams_in_compact_parts by default
1 parent 70d32da commit 98b1107

2 files changed

Lines changed: 1 addition & 2 deletions

File tree

src/Core/SettingsChangesHistory.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -875,7 +875,6 @@ const VersionToSettingsChangesMap & getMergeTreeSettingsChangesHistory()
875875
{"shared_merge_tree_virtual_parts_discovery_batch", 1, 1, "New setting"},
876876
{"max_digestion_size_per_segment", 256_MiB, 256_MiB, "Obsolete setting"},
877877
{"shared_merge_tree_update_replica_flags_delay_ms", 30000, 30000, "New setting"},
878-
{"write_marks_for_substreams_in_compact_parts", false, true, "Enable writing marks for substreams in compact parts by default"},
879878
{"allow_part_offset_column_in_projections", false, true, "Now projections can use _part_offset column."},
880879
{"max_uncompressed_bytes_in_patches", 0, 30ULL * 1024 * 1024 * 1024, "New setting"},
881880
});

src/Storages/MergeTree/MergeTreeSettings.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -289,7 +289,7 @@ namespace ErrorCodes
289289
- `v2`
290290
- `v3`
291291
)", 0) \
292-
DECLARE(Bool, write_marks_for_substreams_in_compact_parts, true, R"(
292+
DECLARE(Bool, write_marks_for_substreams_in_compact_parts, false, R"(
293293
Enables writing marks per each substream instead of per each column in Compact parts.
294294
It allows to read individual subcolumns from the data part efficiently.
295295
)", 0) \

0 commit comments

Comments
 (0)