summaryrefslogtreecommitdiff
path: root/innobase
diff options
context:
space:
mode:
authorunknown <heikki@hundin.mysql.fi>2002-08-23 10:52:24 +0300
committerunknown <heikki@hundin.mysql.fi>2002-08-23 10:52:24 +0300
commit9749209bd0bc855fdf25b77e40e581a69284a70a (patch)
tree12981d9392cd37d0c0aff994646eb0236e436b1e /innobase
parente9e7c23991e80b85d1cc986eecf286d46d153eca (diff)
downloadmariadb-git-9749209bd0bc855fdf25b77e40e581a69284a70a.tar.gz
row0mysql.c, ha_innobase.cc:
Improved error message for out-of-sync frm files sql/ha_innobase.cc: Improved error message for out-of-sync frm files innobase/row/row0mysql.c: Improved error message for out-of-sync frm files
Diffstat (limited to 'innobase')
-rw-r--r--innobase/row/row0mysql.c12
1 files changed, 9 insertions, 3 deletions
diff --git a/innobase/row/row0mysql.c b/innobase/row/row0mysql.c
index bb33f7c1485..d7b685c7f9d 100644
--- a/innobase/row/row0mysql.c
+++ b/innobase/row/row0mysql.c
@@ -1348,7 +1348,9 @@ row_create_table_for_mysql(
"InnoDB: creating an InnoDB table with the same name in another\n"
"InnoDB: database and moving the .frm file to the current database.\n"
"InnoDB: Then MySQL thinks the table exists, and DROP TABLE will\n"
- "InnoDB: succeed.\n");
+ "InnoDB: succeed.\n"
+ "InnoDB: You can look further help from section 15.1 of\n"
+ "InnoDB: http://www.innodb.com/ibman.html\n");
}
trx->error_state = DB_SUCCESS;
@@ -1867,7 +1869,9 @@ row_drop_table_for_mysql(
" InnoDB: Error: table %s does not exist in the InnoDB internal\n"
"InnoDB: data dictionary though MySQL is trying to drop it.\n"
"InnoDB: Have you copied the .frm file of the table to the\n"
- "InnoDB: MySQL database directory from another database?\n",
+ "InnoDB: MySQL database directory from another database?\n"
+ "InnoDB: You can look further help from section 15.1 of\n"
+ "InnoDB: http://www.innodb.com/ibman.html\n",
name);
goto funct_exit;
}
@@ -2189,7 +2193,9 @@ row_rename_table_for_mysql(
fprintf(stderr,
" InnoDB: Error: table %s exists in the InnoDB internal data\n"
"InnoDB: dictionary though MySQL is trying rename table %s to it.\n"
- "InnoDB: Have you deleted the .frm file and not used DROP TABLE?\n",
+ "InnoDB: Have you deleted the .frm file and not used DROP TABLE?\n"
+ "InnoDB: You can look further help from section 15.1 of\n"
+ "InnoDB: http://www.innodb.com/ibman.html\n",
new_name, old_name);
fprintf(stderr,