1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-09 22:24:09 +03:00

Fix default value for innodb_compression_algorithm to 0 (uncompressed)

to avoid test failures.
This commit is contained in:
Jan Lindström
2014-07-23 11:55:34 +03:00
parent dbc79ce055
commit 47daf3b422
2 changed files with 2 additions and 2 deletions

View File

@@ -17083,7 +17083,7 @@ static MYSQL_SYSVAR_ENUM(compression_algorithm, innodb_compression_algorithm,
/* We use here the largest number of supported compression method to /* We use here the largest number of supported compression method to
enable all those methods that are available. Availability of compression enable all those methods that are available. Availability of compression
method is verified on innodb_compression_algorithm_validate function. */ method is verified on innodb_compression_algorithm_validate function. */
PAGE_ALGORITHM_LAST, PAGE_UNCOMPRESSED,
&page_compression_algorithms_typelib); &page_compression_algorithms_typelib);
static MYSQL_SYSVAR_LONG(mtflush_threads, srv_mtflush_threads, static MYSQL_SYSVAR_LONG(mtflush_threads, srv_mtflush_threads,

View File

@@ -18256,7 +18256,7 @@ static MYSQL_SYSVAR_ENUM(compression_algorithm, innodb_compression_algorithm,
/* We use here the largest number of supported compression method to /* We use here the largest number of supported compression method to
enable all those methods that are available. Availability of compression enable all those methods that are available. Availability of compression
method is verified on innodb_compression_algorithm_validate function. */ method is verified on innodb_compression_algorithm_validate function. */
PAGE_ALGORITHM_LAST, PAGE_UNCOMPRESSED,
&page_compression_algorithms_typelib); &page_compression_algorithms_typelib);
static MYSQL_SYSVAR_LONG(mtflush_threads, srv_mtflush_threads, static MYSQL_SYSVAR_LONG(mtflush_threads, srv_mtflush_threads,