diff options
author | monty@mishka.local <> | 2004-05-16 14:48:32 +0300 |
---|---|---|
committer | monty@mishka.local <> | 2004-05-16 14:48:32 +0300 |
commit | 314a8bf1148adc35263971a674333c02a8081b93 (patch) | |
tree | 318557f2fbc33b547d96f62b2544f2e9f4174082 /sql/ha_myisam.h | |
parent | 565aa085a7b398d1ae6e06e628d8e43f052bba9d (diff) | |
download | mariadb-git-314a8bf1148adc35263971a674333c02a8081b93.tar.gz |
key_cmp -> key_cmp_if_same
New records_in_range() interface (similar to read_range())
Macros for faster bitmap handling
Simplify read_range() code (#WL1786)
New general key_cmp() function to compare keys
Diffstat (limited to 'sql/ha_myisam.h')
-rw-r--r-- | sql/ha_myisam.h | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/sql/ha_myisam.h b/sql/ha_myisam.h index 206a1c62a2f..77887220903 100644 --- a/sql/ha_myisam.h +++ b/sql/ha_myisam.h @@ -110,11 +110,7 @@ class ha_myisam: public handler int indexes_are_disabled(void); void start_bulk_insert(ha_rows rows); int end_bulk_insert(); - ha_rows records_in_range(int inx, - const byte *start_key,uint start_key_len, - enum ha_rkey_function start_search_flag, - const byte *end_key,uint end_key_len, - enum ha_rkey_function end_search_flag); + ha_rows records_in_range(uint inx, key_range *min_key, key_range *max_key); void update_create_info(HA_CREATE_INFO *create_info); int create(const char *name, TABLE *form, HA_CREATE_INFO *create_info); THR_LOCK_DATA **store_lock(THD *thd, THR_LOCK_DATA **to, |