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
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
2f16acf9
Commit
2f16acf9
authored
Nov 08, 2009
by
Aleksandr Kuzminsky
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Sync with rev. 115
parent
4819f65a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
5 deletions
+10
-5
include/univ.i
include/univ.i
+10
-5
No files found.
include/univ.i
View file @
2f16acf9
...
...
@@ -47,7 +47,11 @@ Created 1/20/1994 Heikki Tuuri
#
define
INNODB_VERSION_MAJOR
1
#
define
INNODB_VERSION_MINOR
0
#
define
INNODB_VERSION_BUGFIX
4
#
define
PERCONA_INNODB_VERSION
7
#
ifndef
PERCONA_INNODB_VERSION
#
define
PERCONA_INNODB_VERSION
unknown
#
endif
/* The following is the InnoDB version as shown in
SELECT plugin_version FROM information_schema.plugins;
...
...
@@ -59,14 +63,15 @@ component, i.e. we show M.N.P as M.N */
(
INNODB_VERSION_MAJOR
<<
8
|
INNODB_VERSION_MINOR
)
/* auxiliary macros to help creating the version as string */
#
define
__INNODB_VERSION
(
a
,
b
,
c
,
d
)
(
#
a
"."
#
b
"."
#
c
"-"
#
d
)
#
define
_INNODB_VERSION
(
a
,
b
,
c
,
d
)
__INNODB_VERSION
(
a
,
b
,
c
,
d
)
#
define
__INNODB_VERSION
(
a
,
b
,
c
,
d
)
(
#
a
"."
#
b
"."
#
c
"-"
#
d
)
#
define
_INNODB_VERSION
(
a
,
b
,
c
,
d
)
__INNODB_VERSION
(
a
,
b
,
c
,
d
)
#
define
INNODB_VERSION_STR
\
_INNODB_VERSION
(
INNODB_VERSION_MAJOR
,
\
INNODB_VERSION_MINOR
,
\
INNODB_VERSION_BUGFIX
,
\
PERCONA_INNODB_VERSION
)
INNODB_VERSION_BUGFIX
,
\
PERCONA_INNODB_VERSION
)
#
define
REFMAN
"http://dev.mysql.com/doc/refman/5.1/en/"
...
...
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