You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-08-01 06:46:55 +03:00
MCOL-4814 Add a cmake build option to enable LZ4 compression.
This patch adds an option for cmake flags to enable lz4 compression.
This commit is contained in:
@ -19,12 +19,15 @@
|
||||
#include <my_config.h>
|
||||
#include "idb_mysql.h"
|
||||
#include "ha_mcs_sysvars.h"
|
||||
#include "mcsconfig.h"
|
||||
|
||||
const char* mcs_compression_type_names[] = {
|
||||
"SNAPPY", // 0
|
||||
"SNAPPY", // 1
|
||||
"SNAPPY", // 2
|
||||
#ifdef HAVE_LZ4
|
||||
"LZ4", // 3
|
||||
#endif
|
||||
NullS
|
||||
};
|
||||
|
||||
|
Reference in New Issue
Block a user