Skip to content
Open
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: 1 addition & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
5.1
* Include tools in applyCompatibilityMode to ensure they are not limited in sstable formats they support (CASSANDRA-21196)
* Harden the possible range of values for max dictionary size and max total sample size for dictionary training (CASSANDRA-21194)
* Implement a guardrail ensuring that minimum training frequency parameter is provided in ZstdDictionaryCompressor (CASSANDRA-21192)
* Replace manual referencing with ColumnFamilyStore.selectAndReference when training a dictionary (CASSANDRA-21188)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1896,7 +1896,7 @@ private static void validateSSTableFormatFactories(Iterable<SSTableFormat.Factor

private static void applyCompatibilityMode()
{
if (isClientInitialized())
if (isClientOrToolInitialized())
// tools or clients should not limit the sstable formats they support
storageCompatibilityMode = StorageCompatibilityMode.NONE;
else if (conf != null && conf.storage_compatibility_mode != null)
Expand Down