mirror of
https://github.com/MariaDB/server.git
synced 2025-08-15 22:37:22 +00:00
Fixed bug in ALTER TABLE
Removed _mi_rkey() function New fork_big.pl multi-thread test BitKeeper/deleted/.del-fork3_test.pl~c4a7bffb4f8e813c: Delete: tests/fork3_test.pl BitKeeper/deleted/.del-fork_test.pl~3d3535329ed8cd5e: Delete: tests/fork_test.pl Docs/manual.texi: Changelog. Updated support information client/mysqladmin.c: Removed not used --timeout option configure.in: Update version myisam/mi_extra.c: Fixed bug in ALTER TABLE myisam/mi_rkey.c: Removed _mi_rkey() function myisam/myisamdef.h: Removed _mi_rkey() function myisammrg/myrg_rkey.c: Removed _mi_rkey() function myisammrg/myrg_rnext.c: Removed _mi_rkey() function mysql-test/t/alter_table.test: Added test case for ALTER TABLE bug sql/derror.cc: Moved shutdown message to clean_up sql/mysql_priv.h: Moved shutdown message to clean_up sql/sql_class.cc: Fixed bug in MySQL compiled with transactions but using --skip-"table-handler" sql/sql_show.cc: Use time_after_lock for time of query when debugging sql/sql_test.cc: Check memory overruns when using 'mysqladmin debug' strings/ctype-tis620.c: F
This commit is contained in:
@ -72,7 +72,7 @@ static void read_texts(const char *file_name,const char ***point,
|
||||
Check that the above file is the right version for this program!\n\n",
|
||||
my_progname,name,ant,error_messages);
|
||||
VOID(my_close(file,MYF(MY_WME)));
|
||||
clean_up(); /* Clean_up frees everything */
|
||||
clean_up(0); /* Clean_up frees everything */
|
||||
exit(1); /* We can't continue */
|
||||
}
|
||||
|
||||
@ -115,7 +115,7 @@ err:
|
||||
if (file != FERR)
|
||||
VOID(my_close(file,MYF(MY_WME)));
|
||||
fprintf(stderr,buff,my_progname,name);
|
||||
clean_up(); /* Clean_up frees everything */
|
||||
clean_up(0); /* Clean_up frees everything */
|
||||
exit(1); /* We can't continue */
|
||||
} /* read_texts */
|
||||
|
||||
|
Reference in New Issue
Block a user