File tree Expand file tree Collapse file tree
src/java/org/apache/cassandra/config Expand file tree Collapse file tree Original file line number Diff line number Diff line change 115.1
2+ * Include tools in applyCompatibilityMode to ensure they are not limited in sstable formats they support (CASSANDRA-21196)
23 * Harden the possible range of values for max dictionary size and max total sample size for dictionary training (CASSANDRA-21194)
34 * Implement a guardrail ensuring that minimum training frequency parameter is provided in ZstdDictionaryCompressor (CASSANDRA-21192)
45 * Replace manual referencing with ColumnFamilyStore.selectAndReference when training a dictionary (CASSANDRA-21188)
Original file line number Diff line number Diff line change @@ -1896,7 +1896,7 @@ private static void validateSSTableFormatFactories(Iterable<SSTableFormat.Factor
18961896
18971897 private static void applyCompatibilityMode ()
18981898 {
1899- if (isClientInitialized ())
1899+ if (isClientInitialized () || isToolInitialized () )
19001900 // tools or clients should not limit the sstable formats they support
19011901 storageCompatibilityMode = StorageCompatibilityMode .NONE ;
19021902 else if (conf != null && conf .storage_compatibility_mode != null )
You can’t perform that action at this time.
0 commit comments