1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-08-05 16:15:50 +03:00

MCOL-4834 Supported compression methods docs clean-up (#2232)

Co-authored-by: Roman Nozdrin <rnozdrin@mariadb.com>
This commit is contained in:
Roman Nozdrin
2022-02-02 21:44:18 +03:00
committed by GitHub
parent ea8e319844
commit 345ccfb0f9

View File

@@ -43,9 +43,10 @@ static MYSQL_THDVAR_ENUM(
compression_type, compression_type,
PLUGIN_VAR_RQCMDARG, PLUGIN_VAR_RQCMDARG,
"Controls compression algorithm for create tables. Possible values are: " "Controls compression algorithm for create tables. Possible values are: "
"NO_COMPRESSION segment files aren't compressed; "
"SNAPPY segment files are Snappy compressed (default);" "SNAPPY segment files are Snappy compressed (default);"
#ifdef HAVE_LZ4
"LZ4 segment files are LZ4 compressed;", "LZ4 segment files are LZ4 compressed;",
#endif
NULL, // check NULL, // check
NULL, // update NULL, // update
1, //default 1, //default
@@ -148,7 +149,7 @@ static MYSQL_THDVAR_UINT(
NULL, NULL,
16, 16,
0, 0,
2048, 2048,
1 1
); );
@@ -437,7 +438,7 @@ void set_fe_conn_info_ptr(void* ptr, THD* thd)
{ {
return; return;
} }
THDVAR(current_thd, fe_conn_info_ptr) = (uint64_t)(ptr); THDVAR(current_thd, fe_conn_info_ptr) = (uint64_t)(ptr);
} }
@@ -452,7 +453,7 @@ void set_original_optimizer_flags(ulonglong ptr, THD* thd)
{ {
return; return;
} }
THDVAR(current_thd, original_optimizer_flags) = (uint64_t)(ptr); THDVAR(current_thd, original_optimizer_flags) = (uint64_t)(ptr);
} }