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

Fix compiler error if lz4 is not found on the system.

This commit is contained in:
Jan Lindström
2014-02-12 07:09:06 +02:00
parent fa9f5f63e9
commit 184e302ab4
2 changed files with 4 additions and 0 deletions

View File

@@ -16763,7 +16763,9 @@ static struct st_mysql_sys_var* innobase_system_variables[]= {
MYSQL_SYSVAR(trim_pct),
MYSQL_SYSVAR(compress_index_pages),
MYSQL_SYSVAR(use_trim),
#ifdef HAVE_LZ4
MYSQL_SYSVAR(use_lz4),
#endif
NULL
};

View File

@@ -18169,7 +18169,9 @@ static struct st_mysql_sys_var* innobase_system_variables[]= {
MYSQL_SYSVAR(trim_pct),
MYSQL_SYSVAR(compress_index_pages),
MYSQL_SYSVAR(use_trim),
#ifdef HAVE_LZ4
MYSQL_SYSVAR(use_lz4),
#endif
NULL
};