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
a64daceb
Commit
a64daceb
authored
May 22, 2014
by
Jan Lindström
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed compiler errors caused by merge error.
parent
b5cdc5ad
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
storage/innobase/handler/ha_innodb.cc
storage/innobase/handler/ha_innodb.cc
+2
-2
storage/xtradb/handler/ha_innodb.cc
storage/xtradb/handler/ha_innodb.cc
+2
-2
No files found.
storage/innobase/handler/ha_innodb.cc
View file @
a64daceb
...
@@ -16806,9 +16806,9 @@ static MYSQL_SYSVAR_LONG(compression_algorithm, innodb_compression_algorithm,
...
@@ -16806,9 +16806,9 @@ static MYSQL_SYSVAR_LONG(compression_algorithm, innodb_compression_algorithm,
#if defined(HAVE_LZO) && defined(HAVE_LZ4)
#if defined(HAVE_LZO) && defined(HAVE_LZ4)
PAGE_ALGORITHM_LAST
,
PAGE_ALGORITHM_LAST
,
#elif defined(HAVE_LZ4) && !defined(HAVE_LZO)
#elif defined(HAVE_LZ4) && !defined(HAVE_LZO)
PAGE_
ALGORITHM_LZ4
,
PAGE_
LZ4_ALGORITHM
,
#else
#else
PAGE_
ALGORITHM_ZLIB
,
PAGE_
ZLIB_ALGORITHM
,
#endif
#endif
0
);
0
);
...
...
storage/xtradb/handler/ha_innodb.cc
View file @
a64daceb
...
@@ -17963,9 +17963,9 @@ static MYSQL_SYSVAR_LONG(compression_algorithm, innodb_compression_algorithm,
...
@@ -17963,9 +17963,9 @@ static MYSQL_SYSVAR_LONG(compression_algorithm, innodb_compression_algorithm,
#if defined(HAVE_LZO) && defined(HAVE_LZ4)
#if defined(HAVE_LZO) && defined(HAVE_LZ4)
PAGE_ALGORITHM_LAST
,
PAGE_ALGORITHM_LAST
,
#elif defined(HAVE_LZ4) && !defined(HAVE_LZO)
#elif defined(HAVE_LZ4) && !defined(HAVE_LZO)
PAGE_
ALGORITHM_LZ4
,
PAGE_
LZ4_ALGORITHM
,
#else
#else
PAGE_
ALGORITHM_ZLIB
,
PAGE_
ZLIB_ALGORITHM
,
#endif
#endif
0
);
0
);
...
...
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