Commit b42fc1e7 authored by bar@mysql.com's avatar bar@mysql.com

Merge abarkov@bk-internal.mysql.com:/home/bk/mysql-4.1

into mysql.com:/usr/home/bar/mysql-4.1
parents 97bdd97c 3bcbdcb4
...@@ -1013,16 +1013,29 @@ bool ha_myisam::check_and_repair(THD *thd) ...@@ -1013,16 +1013,29 @@ bool ha_myisam::check_and_repair(THD *thd)
if (!file->state->del && (myisam_recover_options & HA_RECOVER_QUICK)) if (!file->state->del && (myisam_recover_options & HA_RECOVER_QUICK))
check_opt.flags|=T_QUICK; check_opt.flags|=T_QUICK;
sql_print_error("Warning: Checking table: '%s'",table->path); sql_print_error("Warning: Checking table: '%s'",table->path);
if ((marked_crashed=mi_is_crashed(file)) || check(thd, &check_opt)) if ((marked_crashed=mi_is_crashed(file)))
{ {
sql_print_error("Warning: Recovering table: '%s'",table->path); char *old_query= thd->query;
check_opt.flags= uint old_query_length= thd->query_length;
((myisam_recover_options & HA_RECOVER_BACKUP ? T_BACKUP_DATA : 0) | pthread_mutex_lock(&LOCK_thread_count);
(marked_crashed ? 0 : T_QUICK) | thd->query= table->real_name;
(myisam_recover_options & HA_RECOVER_FORCE ? 0 : T_SAFE_REPAIR) | thd->query_length= strlen(table->real_name);
T_AUTO_REPAIR); pthread_mutex_unlock(&LOCK_thread_count);
if (repair(thd, &check_opt)) if (check(thd, &check_opt))
error=1; {
sql_print_error("Warning: Recovering table: '%s'",table->path);
check_opt.flags=
((myisam_recover_options & HA_RECOVER_BACKUP ? T_BACKUP_DATA : 0) |
(marked_crashed ? 0 : T_QUICK) |
(myisam_recover_options & HA_RECOVER_FORCE ? 0 : T_SAFE_REPAIR) |
T_AUTO_REPAIR);
if (repair(thd, &check_opt))
error=1;
}
pthread_mutex_lock(&LOCK_thread_count);
thd->query= old_query;
thd->query_length= old_query_length;
pthread_mutex_unlock(&LOCK_thread_count);
} }
DBUG_RETURN(error); DBUG_RETURN(error);
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment