Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion src/Core/SettingsChangesHistory.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -875,7 +875,6 @@ const VersionToSettingsChangesMap & getMergeTreeSettingsChangesHistory()
{"shared_merge_tree_virtual_parts_discovery_batch", 1, 1, "New setting"},
{"max_digestion_size_per_segment", 256_MiB, 256_MiB, "Obsolete setting"},
{"shared_merge_tree_update_replica_flags_delay_ms", 30000, 30000, "New setting"},
{"write_marks_for_substreams_in_compact_parts", false, true, "Enable writing marks for substreams in compact parts by default"},
{"allow_part_offset_column_in_projections", false, true, "Now projections can use _part_offset column."},
{"max_uncompressed_bytes_in_patches", 0, 30ULL * 1024 * 1024 * 1024, "New setting"},
});
Expand Down
2 changes: 1 addition & 1 deletion src/Storages/MergeTree/MergeTreeSettings.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -289,7 +289,7 @@ namespace ErrorCodes
- `v2`
- `v3`
)", 0) \
DECLARE(Bool, write_marks_for_substreams_in_compact_parts, true, R"(
DECLARE(Bool, write_marks_for_substreams_in_compact_parts, false, R"(
Enables writing marks per each substream instead of per each column in Compact parts.
It allows to read individual subcolumns from the data part efficiently.
)", 0) \
Expand Down
Loading