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
e79ebe83
Commit
e79ebe83
authored
Aug 02, 2006
by
marko
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
After ut_print_timestamp(), always display " InnoDB:" (note two spaces).
parent
fa832adc
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
4 deletions
+4
-4
fil/fil0fil.c
fil/fil0fil.c
+1
-1
row/row0mysql.c
row/row0mysql.c
+2
-2
ut/ut0dbg.c
ut/ut0dbg.c
+1
-1
No files found.
fil/fil0fil.c
View file @
e79ebe83
...
@@ -2563,7 +2563,7 @@ fil_reset_too_high_lsns(
...
@@ -2563,7 +2563,7 @@ fil_reset_too_high_lsns(
ut_print_timestamp
(
stderr
);
ut_print_timestamp
(
stderr
);
fprintf
(
stderr
,
fprintf
(
stderr
,
" InnoDB: Flush lsn in the tablespace file %lu to be imported
\n
"
"
InnoDB: Flush lsn in the tablespace file %lu to be imported
\n
"
"InnoDB: is %lu %lu, which exceeds current system lsn %lu %lu.
\n
"
"InnoDB: is %lu %lu, which exceeds current system lsn %lu %lu.
\n
"
"InnoDB: We reset the lsn's in the file "
,
"InnoDB: We reset the lsn's in the file "
,
(
ulong
)
space_id
,
(
ulong
)
space_id
,
...
...
row/row0mysql.c
View file @
e79ebe83
...
@@ -3657,8 +3657,8 @@ row_rename_table_for_mysql(
...
@@ -3657,8 +3657,8 @@ row_rename_table_for_mysql(
trx_general_rollback_for_mysql
(
trx
,
FALSE
,
NULL
);
trx_general_rollback_for_mysql
(
trx
,
FALSE
,
NULL
);
trx
->
error_state
=
DB_SUCCESS
;
trx
->
error_state
=
DB_SUCCESS
;
ut_print_timestamp
(
stderr
);
ut_print_timestamp
(
stderr
);
fputs
(
" InnoDB: Error in table rename, cannot rename "
,
fputs
(
stderr
);
" InnoDB: Error in table rename, cannot rename "
,
stderr
);
ut_print_name
(
stderr
,
trx
,
TRUE
,
old_name
);
ut_print_name
(
stderr
,
trx
,
TRUE
,
old_name
);
fputs
(
" to "
,
stderr
);
fputs
(
" to "
,
stderr
);
ut_print_name
(
stderr
,
trx
,
TRUE
,
new_name
);
ut_print_name
(
stderr
,
trx
,
TRUE
,
new_name
);
...
...
ut/ut0dbg.c
View file @
e79ebe83
...
@@ -42,7 +42,7 @@ ut_dbg_assertion_failed(
...
@@ -42,7 +42,7 @@ ut_dbg_assertion_failed(
{
{
ut_print_timestamp
(
stderr
);
ut_print_timestamp
(
stderr
);
fprintf
(
stderr
,
fprintf
(
stderr
,
" InnoDB: Assertion failure in thread %lu"
"
InnoDB: Assertion failure in thread %lu"
" in file %s line %lu
\n
"
,
" in file %s line %lu
\n
"
,
os_thread_pf
(
os_thread_get_curr_id
()),
file
,
line
);
os_thread_pf
(
os_thread_get_curr_id
()),
file
,
line
);
if
(
expr
)
{
if
(
expr
)
{
...
...
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