summaryrefslogtreecommitdiff
path: root/sql/rpl_record.cc
diff options
context:
space:
mode:
authorMichael Widenius <monty@askmonty.org>2012-08-28 19:39:49 +0300
committerMichael Widenius <monty@askmonty.org>2012-08-28 19:39:49 +0300
commit7dad53633762174405c5e84137801e10f930e71a (patch)
treec23daab5eae30dbad4aa05ca101430b547b3c42d /sql/rpl_record.cc
parentb6eccf51c05105fb56275b1fa2055c4a14fe7459 (diff)
downloadmariadb-git-7dad53633762174405c5e84137801e10f930e71a.tar.gz
Split ER_NO_SUCH_TABLE into ER_NO_SUCH_TABLE and ER_NO_SUCH_TABLE_IN_ENGINE to be able to distingus if a .frm file is missing or if the table is missing in the engine.
sql/handler.cc: Added ER_NO_SUCH_TABLE_IN_ENGINE sql/rpl_record.cc: Fixed wrong printf sql/share/errmsg-utf8.txt: Added ER_NO_SUCH_TABLE_IN_ENGINE sql/sp.cc: Added ER_NO_SUCH_TABLE_IN_ENGINE sql/sp_head.cc: Added ER_NO_SUCH_TABLE_IN_ENGINE sql/sql_admin.cc: Added ER_NO_SUCH_TABLE_IN_ENGINE sql/sql_base.cc: Added ER_NO_SUCH_TABLE_IN_ENGINE sql/sql_show.cc: Added ER_NO_SUCH_TABLE_IN_ENGINE sql/table.cc: Fixed typo
Diffstat (limited to 'sql/rpl_record.cc')
-rw-r--r--sql/rpl_record.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/rpl_record.cc b/sql/rpl_record.cc
index b883ec8df03..99bf8a82004 100644
--- a/sql/rpl_record.cc
+++ b/sql/rpl_record.cc
@@ -314,7 +314,7 @@ unpack_row(Relay_log_info const *rli,
if (!pack_ptr)
{
rli->report(ERROR_LEVEL, ER_SLAVE_CORRUPT_EVENT,
- "Could not read field %`s of table %`s.%`s",
+ "Could not read field '%s' of table '%s.%s'",
f->field_name, table->s->db.str,
table->s->table_name.str);
DBUG_RETURN(ER_SLAVE_CORRUPT_EVENT);