Commit 47daf3b4 authored by Jan Lindström's avatar Jan Lindström

Fix default value for innodb_compression_algorithm to 0 (uncompressed)

to avoid test failures.
parent dbc79ce0
...@@ -17083,7 +17083,7 @@ static MYSQL_SYSVAR_ENUM(compression_algorithm, innodb_compression_algorithm, ...@@ -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,
......
...@@ -18256,7 +18256,7 @@ static MYSQL_SYSVAR_ENUM(compression_algorithm, innodb_compression_algorithm, ...@@ -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,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment