Details
-
Bug
-
Status: Closed (View Workflow)
-
Major
-
Resolution: Fixed
-
None
-
None
Description
When compiling MariaDB 10.11 with ColumnStore, in ha_mcs_sysvar.cpp:
static MYSQL_THDVAR_ENUM(compression_type, PLUGIN_VAR_RQCMDARG, |
"SNAPPY segment files are Snappy compressed (default);" |
#ifdef HAVE_LZ4
|
"LZ4 segment files are LZ4 compressed;", |
#endif |
That final comma is missing if HAVE_LZ4 is not defined, causing build failure. Recommend adding to following or moving the comma outside of the gate.
#else
|
,
|