Fix bug in mysql_backup_table that prevented other threads from

reading while the table was being backed up.


sql/sql_table.cc:
  open_for_modify should be FALSE in mysql_backup_table
This commit is contained in:
unknown 2001-02-07 16:33:56 -05:00
parent 8520725908
commit fb3cc55067

View File

@ -1023,7 +1023,7 @@ int mysql_backup_table(THD* thd, TABLE_LIST* table_list)
{
DBUG_ENTER("mysql_backup_table");
DBUG_RETURN(mysql_admin_table(thd, table_list, 0,
"backup", TL_READ, 1, 0, 0,
"backup", TL_READ, 0, 0, 0,
&handler::backup));
}
int mysql_restore_table(THD* thd, TABLE_LIST* table_list)