diff options
author | unknown <bar@gw.udmsearch.izhnet.ru> | 2002-02-19 20:27:03 +0400 |
---|---|---|
committer | unknown <bar@gw.udmsearch.izhnet.ru> | 2002-02-19 20:27:03 +0400 |
commit | b87d6ee9d730fb2df74a3981b552b0da2e09570c (patch) | |
tree | add5bd03483bc60733cd0b1502518a9bf0fac8df /include/myisam.h | |
parent | 809d41914542c85dbb3186628feae8c55d3f9ccf (diff) | |
download | mariadb-git-b87d6ee9d730fb2df74a3981b552b0da2e09570c.tar.gz |
RTREE related fixes
include/myisam.h:
These two new fields are initialized to either rtree or btree routines
Diffstat (limited to 'include/myisam.h')
-rw-r--r-- | include/myisam.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/myisam.h b/include/myisam.h index 35953496a47..5325f06ec71 100644 --- a/include/myisam.h +++ b/include/myisam.h @@ -147,6 +147,8 @@ typedef struct st_mi_keydef /* Key definition with open & info */ struct st_mi_s_param *s_temp); void (*store_key)(struct st_mi_keydef *keyinfo, uchar *key_pos, struct st_mi_s_param *s_temp); + int (*ck_insert)(struct st_myisam_info *inf, uint k_nr, uchar *k, uint klen); + int (*ck_delete)(struct st_myisam_info *inf, uint k_nr, uchar *k, uint klen); } MI_KEYDEF; |