mirror of
https://github.com/MariaDB/server.git
synced 2025-08-05 13:16:09 +03:00
fix typo
This change was committed to the 5.1.25 release clone, but never made it to the mysql-5.1 BK tree. I'm committing it to mysql-5.1 bzr now.
This commit is contained in:
@@ -130,7 +130,7 @@ test.t1 check error Table upgrade required. Please do "REPAIR TABLE `t1`" to fix
|
|||||||
# REPAIR old table USE_FRM should fail
|
# REPAIR old table USE_FRM should fail
|
||||||
REPAIR TABLE t1 USE_FRM;
|
REPAIR TABLE t1 USE_FRM;
|
||||||
Table Op Msg_type Msg_text
|
Table Op Msg_type Msg_text
|
||||||
t1 repair error Failed reparing incompatible .FRM file
|
t1 repair error Failed repairing incompatible .frm file
|
||||||
# Run REPAIR TABLE to upgrade .frm file
|
# Run REPAIR TABLE to upgrade .frm file
|
||||||
REPAIR TABLE t1;
|
REPAIR TABLE t1;
|
||||||
Table Op Msg_type Msg_text
|
Table Op Msg_type Msg_text
|
||||||
|
@@ -4024,7 +4024,7 @@ static int prepare_for_repair(THD *thd, TABLE_LIST *table_list,
|
|||||||
if (table->s->frm_version != FRM_VER_TRUE_VARCHAR)
|
if (table->s->frm_version != FRM_VER_TRUE_VARCHAR)
|
||||||
{
|
{
|
||||||
error= send_check_errmsg(thd, table_list, "repair",
|
error= send_check_errmsg(thd, table_list, "repair",
|
||||||
"Failed reparing incompatible .FRM file");
|
"Failed repairing incompatible .frm file");
|
||||||
goto end;
|
goto end;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user