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
7673efde
Commit
7673efde
authored
Dec 02, 2009
by
marko
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
branches/zip: ChangeLog: Document that since r6270, the zlib version number
will be displayed at start-up.
parent
e423b56a
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
20 additions
and
13 deletions
+20
-13
ChangeLog
ChangeLog
+8
-0
Makefile.am
Makefile.am
+7
-7
include/univ.i
include/univ.i
+1
-1
plug.in
plug.in
+4
-5
No files found.
ChangeLog
View file @
7673efde
2009-12-02 The InnoDB Team
* srv/srv0start.c: Display the zlib version number at startup.
InnoDB compressed tables use zlib, and the implementation depends
on the zlib function compressBound(), whose definition was slightly
changed in zlib version 1.2.3.1 in 2006. MySQL bundles zlib 1.2.3
from 2005, but some installations use a more recent zlib.
2009-11-30 The InnoDB Team
* dict/dict0crea.c, dict/dict0mem.c, dict/dict0load.c,
...
...
Makefile.am
View file @
7673efde
...
...
@@ -228,7 +228,7 @@ noinst_HEADERS= \
mem/mem0dbg.c
EXTRA_LIBRARIES
=
libinnobase.a
noinst_LIBRARIES
=
@plugin_inno
base
_static_target@
noinst_LIBRARIES
=
@plugin_inno
db_plugin
_static_target@
libinnobase_a_SOURCES
=
\
btr/btr0btr.c
\
btr/btr0cur.c
\
...
...
@@ -326,13 +326,13 @@ libinnobase_a_SOURCES= \
libinnobase_a_CXXFLAGS
=
$(AM_CFLAGS)
libinnobase_a_CFLAGS
=
$(AM_CFLAGS)
EXTRA_LTLIBRARIES
=
ha_innodb.la
pkgplugin_LTLIBRARIES
=
@plugin_inno
base
_shared_target@
EXTRA_LTLIBRARIES
=
ha_innodb
_plugin
.la
pkgplugin_LTLIBRARIES
=
@plugin_inno
db_plugin
_shared_target@
ha_innodb_la_LDFLAGS
=
-module
-rpath
$(pkgplugindir)
ha_innodb_la_CXXFLAGS
=
$(AM_CFLAGS)
$(INNODB_DYNAMIC_CFLAGS)
ha_innodb_la_CFLAGS
=
$(AM_CFLAGS)
$(INNODB_DYNAMIC_CFLAGS)
ha_innodb_la_SOURCES
=
$(libinnobase_a_SOURCES)
ha_innodb_
plugin_
la_LDFLAGS
=
-module
-rpath
$(pkgplugindir)
ha_innodb_
plugin_
la_CXXFLAGS
=
$(AM_CFLAGS)
$(INNODB_DYNAMIC_CFLAGS)
ha_innodb_
plugin_
la_CFLAGS
=
$(AM_CFLAGS)
$(INNODB_DYNAMIC_CFLAGS)
ha_innodb_
plugin_
la_SOURCES
=
$(libinnobase_a_SOURCES)
EXTRA_DIST
=
CMakeLists.txt plug.in
\
pars/make_bison.sh pars/make_flex.sh
\
...
...
include/univ.i
View file @
7673efde
...
...
@@ -204,11 +204,11 @@ operations (very slow); also UNIV_DEBUG must be defined */
in sync0sync.c */
#
define
UNIV_BTR_PRINT
/* enable functions for
printing B-trees */
#
endif
#
define
UNIV_ZIP_DEBUG
/* extensive consistency checks
for compressed pages */
#
define
UNIV_ZIP_COPY
/* call page_zip_copy_recs()
more often */
#
endif
#
define
UNIV_BTR_DEBUG
/* check B-tree links */
#
define
UNIV_LIGHT_MEM_DEBUG
/* light memory debugging */
...
...
plug.in
View file @
7673efde
...
...
@@ -14,12 +14,11 @@
# Place, Suite 330, Boston, MA 02111-1307 USA
#
MYSQL_STORAGE_ENGINE
(
inno
base
,
innodb
, [
InnoDB
Storage
Engine
],
MYSQL_STORAGE_ENGINE
(
inno
db_plugin
,
, [
InnoDB
Storage
Engine
],
[
Transactional
Tables
using
InnoDB
], [
max
,
max
-
no
-
ndb
])
MYSQL_PLUGIN_DIRECTORY
(
innobase
, [
storage
/
innobase
])
MYSQL_PLUGIN_STATIC
(
innobase
, [
libinnobase
.
a
])
MYSQL_PLUGIN_DYNAMIC
(
innobase
, [
ha_innodb
.
la
])
MYSQL_PLUGIN_ACTIONS
(
innobase
, [
MYSQL_PLUGIN_DIRECTORY
(
innodb_plugin
, [
storage
/
innodb_plugin
])
MYSQL_PLUGIN_DYNAMIC
(
innodb_plugin
, [
ha_innodb_plugin
.
la
])
MYSQL_PLUGIN_ACTIONS
(
innodb_plugin
, [
AC_CHECK_HEADERS
(
sched
.
h
)
AC_CHECK_SIZEOF
(
int
,
4
)
AC_CHECK_SIZEOF
(
long
,
4
)
...
...
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