diff options
author | unknown <monty@mashka.mysql.fi> | 2003-07-08 23:58:04 +0300 |
---|---|---|
committer | unknown <monty@mashka.mysql.fi> | 2003-07-08 23:58:04 +0300 |
commit | e13e857cae1ecaa322a0b4dec76e5b5dfb4f53a0 (patch) | |
tree | 469e4c68e8c5de015364504f40b14cec7177b355 /sql/mysqld.cc | |
parent | 4c2d3b05547e137cf80f7b983d33927c6072799b (diff) | |
download | mariadb-git-e13e857cae1ecaa322a0b4dec76e5b5dfb4f53a0.tar.gz |
Fixed bug in ALTER TABLE ... DISABLE/ENABLE KEYS
Removed double my_thread_end() which caused fatal error on windows if mysqld died on startup
myisam/mi_extra.c:
Fixed bug in ALTER TABLE ... DISABLE/ENABLE KEYS
mysql-test/r/alter_table.result:
Fixed bug in ALTER TABLE ... DISABLE/ENABLE KEYS
mysql-test/t/alter_table.test:
Test DISABLE/ENABLE KEY
sql/ha_myisam.cc:
Fixed bug in ALTER TABLE ... DISABLE/ENABLE KEYS
sql/mysqld.cc:
Removed double my_thread_end() which caused fatal error on windows if mysqld died on startup
sql/sql_table.cc:
Fixed bug in ALTER TABLE ... DISABLE/ENABLE KEYS
sql/table.cc:
Fixed bug in ALTER TABLE ... DISABLE/ENABLE KEYS
sql/table.h:
Fixed bug in ALTER TABLE ... DISABLE/ENABLE KEYS
Diffstat (limited to 'sql/mysqld.cc')
-rw-r--r-- | sql/mysqld.cc | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/sql/mysqld.cc b/sql/mysqld.cc index 4f6f55bce0b..95bf94c8e8b 100644 --- a/sql/mysqld.cc +++ b/sql/mysqld.cc @@ -871,7 +871,6 @@ extern "C" void unireg_abort(int exit_code) sql_print_error("Aborting\n"); clean_up(1); /* purecov: inspected */ DBUG_PRINT("quit",("done with cleanup in unireg_abort")); - my_thread_end(); clean_up_mutexes(); my_end(opt_endinfo ? MY_CHECK_ERROR | MY_GIVE_INFO : 0); exit(exit_code); /* purecov: inspected */ |