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
f867a695
Commit
f867a695
authored
Aug 02, 2018
by
Marko Mäkelä
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
After-merge fix: Remove an unnecessary parameter
parent
5ce21bc6
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
3 deletions
+2
-3
storage/innobase/handler/ha_innodb.cc
storage/innobase/handler/ha_innodb.cc
+2
-3
No files found.
storage/innobase/handler/ha_innodb.cc
View file @
f867a695
...
...
@@ -13534,7 +13534,6 @@ inline MY_ATTRIBUTE((warn_unused_result))
dberr_t
innobase_rename_table
(
/*==================*/
THD
*
thd
,
/*!< Connection thread handle */
trx_t
*
trx
,
/*!< in: transaction */
const
char
*
from
,
/*!< in: old name of the table */
const
char
*
to
)
/*!< in: new name of the table */
...
...
@@ -13565,7 +13564,7 @@ innobase_rename_table(
/* Since DICT_BG_YIELD has sleep for 250 milliseconds,
Convert lock_wait_timeout unit from second to 250 milliseconds */
long
int
lock_wait_timeout
=
thd_lock_wait_timeout
(
thd
)
*
4
;
long
int
lock_wait_timeout
=
thd_lock_wait_timeout
(
t
rx
->
mysql_t
hd
)
*
4
;
if
(
table
!=
NULL
)
{
for
(
dict_index_t
*
index
=
dict_table_get_first_index
(
table
);
index
!=
NULL
;
...
...
@@ -13680,7 +13679,7 @@ ha_innobase::rename_table(
++
trx
->
will_lock
;
trx_set_dict_operation
(
trx
,
TRX_DICT_OP_INDEX
);
dberr_t
error
=
innobase_rename_table
(
t
hd
,
t
rx
,
from
,
to
);
dberr_t
error
=
innobase_rename_table
(
trx
,
from
,
to
);
DEBUG_SYNC
(
thd
,
"after_innobase_rename_table"
);
...
...
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