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
e73cb165
Commit
e73cb165
authored
Jan 07, 2011
by
Jimmy Yang
Browse files
Options
Browse Files
Download
Plain Diff
Merge from mysql-5.1-security to mysql-5.5-security
parents
547421b2
cd47d29d
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
5 deletions
+5
-5
storage/innobase/handler/ha_innodb.cc
storage/innobase/handler/ha_innodb.cc
+2
-2
storage/innobase/handler/i_s.cc
storage/innobase/handler/i_s.cc
+1
-1
storage/innobase/row/row0merge.c
storage/innobase/row/row0merge.c
+2
-2
No files found.
storage/innobase/handler/ha_innodb.cc
View file @
e73cb165
...
...
@@ -6220,8 +6220,8 @@ create_table_def(
push_warning_printf
(
(
THD
*
)
trx
->
mysql_thd
,
MYSQL_ERROR
::
WARN_LEVEL_WARN
,
ER_TABLE_NAME
,
"InnoDB:
Failed to create table %s. Table Name"
" or Database Name is too long"
,
table_name
);
"InnoDB:
Table Name or Database Name is too long"
);
DBUG_RETURN
(
ER_TABLE_NAME
);
}
...
...
storage/innobase/handler/i_s.cc
View file @
e73cb165
...
...
@@ -759,7 +759,7 @@ fill_innodb_locks_from_cache(
for
(
i
=
0
;
i
<
rows_num
;
i
++
)
{
i_s_locks_row_t
*
row
;
char
buf
[
MAX_FULL_NAME_LEN
];
char
buf
[
MAX_FULL_NAME_LEN
+
1
];
const
char
*
bufend
;
char
lock_trx_id
[
TRX_ID_MAX_LEN
+
1
];
...
...
storage/innobase/row/row0merge.c
View file @
e73cb165
...
...
@@ -2364,7 +2364,7 @@ row_merge_rename_tables(
{
ulint
err
=
DB_ERROR
;
pars_info_t
*
info
;
char
old_name
[
MAX_
TABLE
_NAME_LEN
+
1
];
char
old_name
[
MAX_
FULL
_NAME_LEN
+
1
];
ut_ad
(
trx
->
mysql_thread_id
==
os_thread_get_curr_id
());
ut_ad
(
old_table
!=
new_table
);
...
...
@@ -2379,7 +2379,7 @@ row_merge_rename_tables(
ut_print_timestamp
(
stderr
);
fprintf
(
stderr
,
"InnoDB: too long table name: '%s', "
"max length is %d
\n
"
,
old_table
->
name
,
MAX_
TABLE
_NAME_LEN
);
MAX_
FULL
_NAME_LEN
);
ut_error
;
}
...
...
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