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
e423b56a
Commit
e423b56a
authored
Dec 02, 2009
by
marko
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
branches/zip: innobase_start_or_create_for_mysql(): Log the zlib version.
parent
cfbefcbd
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
1 deletion
+10
-1
srv/srv0start.c
srv/srv0start.c
+10
-1
No files found.
srv/srv0start.c
View file @
e423b56a
...
...
@@ -105,6 +105,7 @@ Created 2/16/1996 Heikki Tuuri
# include "btr0pcur.h"
# include "thr0loc.h"
# include "os0sync.h"
/* for INNODB_RW_LOCKS_USE_ATOMICS */
# include "zlib.h"
/* for ZLIB_VERSION */
/** Log sequence number immediately after startup */
UNIV_INTERN
ib_uint64_t
srv_start_lsn
;
...
...
@@ -1105,7 +1106,15 @@ innobase_start_or_create_for_mysql(void)
"InnoDB: The InnoDB memory heap is disabled
\n
"
);
}
fprintf
(
stderr
,
"InnoDB: %s
\n
"
,
IB_ATOMICS_STARTUP_MSG
);
fputs
(
"InnoDB: "
IB_ATOMICS_STARTUP_MSG
"
\n
InnoDB: Compressed tables use zlib "
ZLIB_VERSION
#ifdef UNIV_ZIP_DEBUG
" with validation"
#endif
/* UNIV_ZIP_DEBUG */
#ifdef UNIV_ZIP_COPY
" and extra copying"
#endif
/* UNIV_ZIP_COPY */
"
\n
"
,
stderr
);
/* Since InnoDB does not currently clean up all its internal data
structures in MySQL Embedded Server Library server_end(), we
...
...
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