Commit ff3f63c3 authored by Jan Lindström's avatar Jan Lindström

Fix compiler errors caused by merge error.

parent d12dbe77
......@@ -16915,9 +16915,9 @@ static MYSQL_SYSVAR_LONG(compression_algorithm, innodb_compression_algorithm,
#if defined(HAVE_LZO) && defined(HAVE_LZ4)
PAGE_ALGORITHM_LAST,
#elif defined(HAVE_LZ4) && !defined(HAVE_LZO)
PAGE_ALGORITHM_LZ4,
PAGE_LZ4_ALGORITHM,
#else
PAGE_ALGORITHM_ZLIB,
PAGE_ZLIB_ALGORITHM,
#endif
0);
......
......@@ -18093,9 +18093,9 @@ static MYSQL_SYSVAR_LONG(compression_algorithm, innodb_compression_algorithm,
#if defined(HAVE_LZO) && defined(HAVE_LZ4)
PAGE_ALGORITHM_LAST,
#elif defined(HAVE_LZ4) && !defined(HAVE_LZO)
PAGE_ALGORITHM_LZ4,
PAGE_LZ4_ALGORITHM,
#else
PAGE_ALGORITHM_ZLIB,
PAGE_ZLIB_ALGORITHM,
#endif
0);
......
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