Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mariadb
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
184e302a
Commit
184e302a
authored
Feb 12, 2014
by
Jan Lindström
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix compiler error if lz4 is not found on the system.
parent
fa9f5f63
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
0 deletions
+4
-0
storage/innobase/handler/ha_innodb.cc
storage/innobase/handler/ha_innodb.cc
+2
-0
storage/xtradb/handler/ha_innodb.cc
storage/xtradb/handler/ha_innodb.cc
+2
-0
No files found.
storage/innobase/handler/ha_innodb.cc
View file @
184e302a
...
...
@@ -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
};
...
...
storage/xtradb/handler/ha_innodb.cc
View file @
184e302a
...
...
@@ -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
};
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment