diff options
author | unknown <monty@mysql.com> | 2006-01-06 21:42:17 +0200 |
---|---|---|
committer | unknown <monty@mysql.com> | 2006-01-06 21:42:17 +0200 |
commit | 0960c72eb22b0e935aa97728a655837b94acc810 (patch) | |
tree | c5fd0198611166ad940fadddeedd2018b9aa73c4 /myisam | |
parent | d0860af76ef7136b180f90c93f6376b22f3d49aa (diff) | |
download | mariadb-git-0960c72eb22b0e935aa97728a655837b94acc810.tar.gz |
Fixes during review of new pushed code:
Remove wrong fix for Bug#14397 - OPTIMIZE TABLE with an open HANDLER causes a crash
Safety fix for bug #13855 "select distinct with group by caused server crash"
client/mysqlimport.c:
Remove not used variable
myisam/myisam_ftdump.c:
Fixed compiler warning
sql/item_cmpfunc.cc:
Removed compiler warning
sql/sql_handler.cc:
Remove wrong fix for Bug#14397 - OPTIMIZE TABLE with an open HANDLER causes a crash.
It's better to let mysql_lock_tables reopen the TABLE object in case of OPTIMIZE TABLE and fix items AFTER mysql_lock_table() instead of before
sql/sql_select.cc:
Safety fix for bug #13855 "select distinct with group by caused server crash"
The previous patch only removed the symptomps, this fix removed the cause of the problem
(Which was that not all hidden_fields was stored in the temporary table)
Diffstat (limited to 'myisam')
-rw-r--r-- | myisam/myisam_ftdump.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/myisam/myisam_ftdump.c b/myisam/myisam_ftdump.c index 838f90feae5..005d15376fb 100644 --- a/myisam/myisam_ftdump.c +++ b/myisam/myisam_ftdump.c @@ -66,7 +66,7 @@ int main(int argc,char *argv[]) struct { MI_INFO *info; } aio0, *aio=&aio0; /* for GWS_IN_USE */ MY_INIT(argv[0]); - if (error=handle_options(&argc, &argv, my_long_options, get_one_option)) + if ((error= handle_options(&argc, &argv, my_long_options, get_one_option))) exit(error); if (count || dump) verbose=0; |