diff options
author | monty@tramp.mysql.fi <> | 2000-09-26 00:33:25 +0300 |
---|---|---|
committer | monty@tramp.mysql.fi <> | 2000-09-26 00:33:25 +0300 |
commit | e32799e4ddeb03362d5740ac4f3ce5a9e4627ea0 (patch) | |
tree | 047c90e932cb7b90a58fe795b855351027725c29 /sql/ha_myisam.h | |
parent | 50486eeb807aefb8af2e03636544fd167ded7f00 (diff) | |
download | mariadb-git-e32799e4ddeb03362d5740ac4f3ce5a9e4627ea0.tar.gz |
RIGHT JOIN, part of automatic repair of MyISAM tables, backup on repair,
reading from FIFO, fixes for FULLTEXT, @@IDENTITY
Diffstat (limited to 'sql/ha_myisam.h')
-rw-r--r-- | sql/ha_myisam.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/sql/ha_myisam.h b/sql/ha_myisam.h index 274b927a0c7..f1e5b217762 100644 --- a/sql/ha_myisam.h +++ b/sql/ha_myisam.h @@ -24,7 +24,12 @@ #include <myisam.h> #include <ft_global.h> +enum myisam_recover_types { HA_RECOVER_NONE, HA_RECOVER_DEFAULT, + HA_RECOVER_BACKUP}; + extern ulong myisam_sort_buffer_size; +extern TYPELIB myisam_recover_typelib; +extern myisam_recover_types myisam_recover_type; class ha_myisam: public handler { @@ -49,7 +54,7 @@ class ha_myisam: public handler uint max_key_parts() const { return MAX_REF_PARTS; } uint max_key_length() const { return MAX_KEY_LENGTH; } - int open(const char *name, int mode, int test_if_locked); + int open(const char *name, int mode, uint test_if_locked); int close(void); int write_row(byte * buf); int update_row(const byte * old_data, byte * new_data); |