Disable in-memory compression by default

This commit is contained in:
Alexey Milovidov 2021-02-19 12:02:18 +03:00
parent a9d9a6d56f
commit 39f07d62a4

View File

@ -9,7 +9,7 @@ class ASTStorage;
#define MEMORY_SETTINGS(M) \
M(Bool, compress, true, "Compress data in memory", 0) \
M(Bool, compress, false, "Compress data in memory", 0) \
DECLARE_SETTINGS_TRAITS(memorySettingsTraits, MEMORY_SETTINGS)