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
afce5415
Commit
afce5415
authored
Feb 09, 2016
by
Sergei Golubchik
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'merge-xtradb-5.5' into 5.5
5.5.47-37.7
parents
5d478f53
3cfd36bb
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
18 additions
and
4 deletions
+18
-4
storage/xtradb/handler/ha_innodb.cc
storage/xtradb/handler/ha_innodb.cc
+11
-1
storage/xtradb/include/univ.i
storage/xtradb/include/univ.i
+2
-2
storage/xtradb/log/log0recv.c
storage/xtradb/log/log0recv.c
+5
-1
No files found.
storage/xtradb/handler/ha_innodb.cc
View file @
afce5415
...
...
@@ -7744,7 +7744,8 @@ create_table_def(
/* MySQL does the name length check. But we do additional check
on the name length here */
if
(
strlen
(
table_name
)
>
MAX_FULL_NAME_LEN
)
{
const
size_t
table_name_len
=
strlen
(
table_name
);
if
(
table_name_len
>
MAX_FULL_NAME_LEN
)
{
push_warning_printf
(
(
THD
*
)
trx
->
mysql_thd
,
MYSQL_ERROR
::
WARN_LEVEL_WARN
,
ER_TABLE_NAME
,
...
...
@@ -7753,6 +7754,15 @@ create_table_def(
DBUG_RETURN
(
ER_TABLE_NAME
);
}
if
(
table_name
[
table_name_len
-
1
]
==
'/'
)
{
push_warning_printf
(
(
THD
*
)
trx
->
mysql_thd
,
MYSQL_ERROR
::
WARN_LEVEL_WARN
,
ER_TABLE_NAME
,
"InnoDB: Table name is empty"
);
DBUG_RETURN
(
ER_WRONG_TABLE_NAME
);
}
n_cols
=
form
->
s
->
fields
;
/* We pass 0 as the space id, and determine at a lower level the space
...
...
storage/xtradb/include/univ.i
View file @
afce5415
...
...
@@ -64,10 +64,10 @@ component, i.e. we show M.N.P as M.N */
(
INNODB_VERSION_MAJOR
<<
8
|
INNODB_VERSION_MINOR
)
#
ifndef
PERCONA_INNODB_VERSION
#
define
PERCONA_INNODB_VERSION
37.
6
#
define
PERCONA_INNODB_VERSION
37.
7
#
endif
#
define
INNODB_VERSION_STR
"5.5.4
6
-MariaDB-"
IB_TO_STR
(
PERCONA_INNODB_VERSION
)
#
define
INNODB_VERSION_STR
"5.5.4
7
-MariaDB-"
IB_TO_STR
(
PERCONA_INNODB_VERSION
)
#
define
REFMAN
"http://dev.mysql.com/doc/refman/"
\
IB_TO_STR
(
MYSQL_MAJOR_VERSION
)
"."
\
...
...
storage/xtradb/log/log0recv.c
View file @
afce5415
/*****************************************************************************
Copyright (c) 1997, 201
0, Innobase Oy
. All Rights Reserved.
Copyright (c) 1997, 201
5, Oracle and/or its affiliates
. All Rights Reserved.
This program is free software; you can redistribute it and/or modify it under
the terms of the GNU General Public License as published by the Free Software
...
...
@@ -766,6 +766,10 @@ not_consistent:
fprintf
(
stderr
,
"InnoDB: No valid checkpoint found.
\n
"
"InnoDB: If you are attempting downgrade"
" from MySQL 5.7.9 or later,
\n
"
"InnoDB: please refer to "
REFMAN
"upgrading-downgrading.html
\n
"
"InnoDB: If this error appears when you are"
" creating an InnoDB database,
\n
"
"InnoDB: the problem may be that during"
...
...
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