diff options
author | monty@donna.mysql.com <> | 2001-01-31 04:47:25 +0200 |
---|---|---|
committer | monty@donna.mysql.com <> | 2001-01-31 04:47:25 +0200 |
commit | bdbc0ef7a068d77e404bc4e13b864cb41112521a (patch) | |
tree | 851a8ba92ed9883efe2504e0726aae6843c317c0 /include | |
parent | acd45847ac0485617bece05abccbc9f4e9b2b782 (diff) | |
download | mariadb-git-bdbc0ef7a068d77e404bc4e13b864cb41112521a.tar.gz |
New myisamchk option --sort-recover
Allow delete of crashed MyISAM tables
Fixed bug when BLOB was first part of key
Fixed bug when using result from CASE in GROUP BY
Fixed core-dump bug in monthname()
Optimized calling of check_db_name()
Diffstat (limited to 'include')
-rw-r--r-- | include/myisam.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/myisam.h b/include/myisam.h index d198d6af80e..52a04e956aa 100644 --- a/include/myisam.h +++ b/include/myisam.h @@ -324,7 +324,7 @@ typedef struct st_mi_check_param uint testflag; uint8 language; my_bool using_global_keycache, opt_lock_memory, opt_follow_links; - my_bool retry_repair,retry_without_quick; + my_bool retry_repair,retry_without_quick, force_sort; char temp_filename[FN_REFLEN],*isam_file_name,*tmpdir; int tmpfile_createflag; myf myf_rw; |