summaryrefslogtreecommitdiff
path: root/include/myisam.h
diff options
context:
space:
mode:
authormonty@mishka.local <>2004-05-16 14:48:32 +0300
committermonty@mishka.local <>2004-05-16 14:48:32 +0300
commit314a8bf1148adc35263971a674333c02a8081b93 (patch)
tree318557f2fbc33b547d96f62b2544f2e9f4174082 /include/myisam.h
parent565aa085a7b398d1ae6e06e628d8e43f052bba9d (diff)
downloadmariadb-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 'include/myisam.h')
-rw-r--r--include/myisam.h5
1 files changed, 1 insertions, 4 deletions
diff --git a/include/myisam.h b/include/myisam.h
index 93e2dc15574..c99e9a30b08 100644
--- a/include/myisam.h
+++ b/include/myisam.h
@@ -231,10 +231,7 @@ extern int mi_extra(struct st_myisam_info *file,
enum ha_extra_function function,
void *extra_arg);
extern ha_rows mi_records_in_range(struct st_myisam_info *info,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);
+ key_range *min_key, key_range *max_key);
extern int mi_log(int activate_log);
extern int mi_is_changed(struct st_myisam_info *info);
extern int mi_delete_all_rows(struct st_myisam_info *info);