1
0
mirror of https://github.com/MariaDB/server.git synced 2025-12-24 11:21:21 +03:00

Fix bug in mysql_backup_table that prevented other threads from

reading while the table was being backed up.
This commit is contained in:
tim@threads.polyesthetic.msg
2001-02-07 16:33:56 -05:00
parent 591997d3b9
commit fab185b7a6

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)