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
491d1068
Commit
491d1068
authored
Oct 24, 2007
by
marko
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use "InnoDB:" prefix in error messages.
parent
d7f1b3dc
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
10 deletions
+13
-10
handler/ha_innodb.cc
handler/ha_innodb.cc
+12
-9
sync/sync0sync.c
sync/sync0sync.c
+1
-1
No files found.
handler/ha_innodb.cc
View file @
491d1068
...
...
@@ -3431,7 +3431,7 @@ ha_innobase::write_row(
/*
ut_print_timestamp(stderr);
fprintf(stderr,
" InnoDB
error
: ALTER TABLE is holding lock"
" InnoDB: ALTER TABLE is holding lock"
" on %lu tables!\n",
prebuilt->trx->mysql_n_tables_locked);
*/
...
...
@@ -6589,14 +6589,17 @@ ha_innobase::transactional_table_lock(
if
(
prebuilt
->
table
->
ibd_file_missing
&&
!
thd_tablespace_op
(
thd
))
{
ut_print_timestamp
(
stderr
);
fprintf
(
stderr
,
" InnoDB error:
\n
"
"MySQL is trying to use a table handle but the .ibd file for
\n
"
"table %s does not exist.
\n
"
"Have you deleted the .ibd file from the database directory under
\n
"
"the MySQL datadir?"
"See http://dev.mysql.com/doc/refman/5.1/en/innodb-troubleshooting.html
\n
"
"how you can resolve the problem.
\n
"
,
prebuilt
->
table
->
name
);
fprintf
(
stderr
,
" InnoDB: MySQL is trying to use a table handle"
" but the .ibd file for
\n
"
"InnoDB: table %s does not exist.
\n
"
"InnoDB: Have you deleted the .ibd file"
" from the database directory under
\n
"
"InnoDB: the MySQL datadir?"
"InnoDB: See"
" http://dev.mysql.com/doc/refman/5.1/en/innodb-troubleshooting.html
\n
"
"InnoDB: how you can resolve the problem.
\n
"
,
prebuilt
->
table
->
name
);
DBUG_RETURN
(
HA_ERR_CRASHED
);
}
...
...
sync/sync0sync.c
View file @
491d1068
...
...
@@ -830,7 +830,7 @@ sync_thread_levels_g(
mutex
=
slot
->
latch
;
fprintf
(
stderr
,
"InnoDB
error
: sync levels should be"
"InnoDB: sync levels should be"
" > %lu but a level is %lu
\n
"
,
(
ulong
)
limit
,
(
ulong
)
slot
->
level
);
...
...
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