mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 12:02:42 +01:00
Fix default value for innodb_compression_algorithm to 0 (uncompressed)
to avoid test failures.
This commit is contained in:
parent
dbc79ce055
commit
47daf3b422
2 changed files with 2 additions and 2 deletions
|
@ -17083,7 +17083,7 @@ static MYSQL_SYSVAR_ENUM(compression_algorithm, innodb_compression_algorithm,
|
|||
/* We use here the largest number of supported compression method to
|
||||
enable all those methods that are available. Availability of compression
|
||||
method is verified on innodb_compression_algorithm_validate function. */
|
||||
PAGE_ALGORITHM_LAST,
|
||||
PAGE_UNCOMPRESSED,
|
||||
&page_compression_algorithms_typelib);
|
||||
|
||||
static MYSQL_SYSVAR_LONG(mtflush_threads, srv_mtflush_threads,
|
||||
|
|
|
@ -18256,7 +18256,7 @@ static MYSQL_SYSVAR_ENUM(compression_algorithm, innodb_compression_algorithm,
|
|||
/* We use here the largest number of supported compression method to
|
||||
enable all those methods that are available. Availability of compression
|
||||
method is verified on innodb_compression_algorithm_validate function. */
|
||||
PAGE_ALGORITHM_LAST,
|
||||
PAGE_UNCOMPRESSED,
|
||||
&page_compression_algorithms_typelib);
|
||||
|
||||
static MYSQL_SYSVAR_LONG(mtflush_threads, srv_mtflush_threads,
|
||||
|
|
Loading…
Reference in a new issue