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
377cd520
Commit
377cd520
authored
Jun 27, 2018
by
Marko Mäkelä
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Pretty-print table names in some error messages
parent
6d377a52
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
6 deletions
+5
-6
storage/innobase/btr/btr0defragment.cc
storage/innobase/btr/btr0defragment.cc
+2
-2
storage/innobase/dict/dict0dict.cc
storage/innobase/dict/dict0dict.cc
+1
-1
storage/innobase/handler/handler0alter.cc
storage/innobase/handler/handler0alter.cc
+2
-3
No files found.
storage/innobase/btr/btr0defragment.cc
View file @
377cd520
...
...
@@ -782,7 +782,7 @@ DECLARE_THREAD(btr_defragment_thread)(void*)
err
=
dict_stats_save_defrag_stats
(
index
);
if
(
err
!=
DB_SUCCESS
)
{
ib
::
error
()
<<
"Saving defragmentation stats for table "
<<
index
->
table
->
name
.
m_name
<<
index
->
table
->
name
<<
" index "
<<
index
->
name
()
<<
" failed with error "
<<
err
;
}
else
{
...
...
@@ -790,7 +790,7 @@ DECLARE_THREAD(btr_defragment_thread)(void*)
if
(
err
!=
DB_SUCCESS
)
{
ib
::
error
()
<<
"Saving defragmentation summary for table "
<<
index
->
table
->
name
.
m_name
<<
index
->
table
->
name
<<
" index "
<<
index
->
name
()
<<
" failed with error "
<<
err
;
}
...
...
storage/innobase/dict/dict0dict.cc
View file @
377cd520
...
...
@@ -574,7 +574,7 @@ dict_table_close_and_drop(
if
(
err
!=
DB_SUCCESS
)
{
ib
::
error
()
<<
"At "
<<
__FILE__
<<
":"
<<
__LINE__
<<
" row_merge_drop_table returned error: "
<<
err
<<
" table: "
<<
table
->
name
.
m_name
;
<<
" table: "
<<
table
->
name
;
}
}
...
...
storage/innobase/handler/handler0alter.cc
View file @
377cd520
...
...
@@ -9086,12 +9086,11 @@ ha_innobase::commit_inplace_alter_table(
error
=
row_merge_drop_table
(
trx
,
ctx
->
old_table
);
if
(
error
!=
DB_SUCCESS
)
{
ib
::
error
()
<<
"Inplace alter table "
<<
ctx
->
old_table
->
name
.
m_name
ib
::
error
()
<<
"Inplace alter table "
<<
ctx
->
old_table
->
name
<<
" dropping copy of the old table failed error "
<<
error
<<
". tmp_name "
<<
(
ctx
->
tmp_name
?
ctx
->
tmp_name
:
"N/A"
)
<<
" new_table "
<<
(
ctx
->
new_table
?
ctx
->
new_table
->
name
.
m_name
:
"N/A"
);
<<
" new_table "
<<
ctx
->
new_table
->
name
;
}
trx_commit_for_mysql
(
trx
);
...
...
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