diff options
author | monty@donna.mysql.com <> | 2000-08-29 12:31:01 +0300 |
---|---|---|
committer | monty@donna.mysql.com <> | 2000-08-29 12:31:01 +0300 |
commit | 066d55c0c09d589d17bf466682134af50cb59e14 (patch) | |
tree | 8c9e3c031400ac400edcf6561fe51f4bdbd69369 /sql/ha_heap.h | |
parent | d564acf14eb07cefedf0218c90fd109c61dc6e2f (diff) | |
download | mariadb-git-066d55c0c09d589d17bf466682134af50cb59e14.tar.gz |
Bug fixes for 3.23.23
Diffstat (limited to 'sql/ha_heap.h')
-rw-r--r-- | sql/ha_heap.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/sql/ha_heap.h b/sql/ha_heap.h index acbc0975f1e..b56ee84822f 100644 --- a/sql/ha_heap.h +++ b/sql/ha_heap.h @@ -65,7 +65,10 @@ class ha_heap: public handler int reset(void); int external_lock(THD *thd, int lock_type); int delete_all_rows(void); - + 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); int delete_table(const char *from); int rename_table(const char * from, const char * to); int create(const char *name, TABLE *form, HA_CREATE_INFO *create_info); |