1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-27 18:02:13 +03:00

MRR interface: change range_info's type from char* to range_id_t typedef. The goals are:

- cleaner code
- ability to change from using pointers to offsets at some point
This commit is contained in:
Sergey Petrunya
2011-03-04 12:06:03 +03:00
parent cdd214de1c
commit e6bd643c75
13 changed files with 52 additions and 48 deletions

View File

@ -1313,7 +1313,7 @@ public:
uint get_next_key(uchar **key);
/* Check index condition of the joined table for a record from BKA cache */
bool skip_index_tuple(char *range_info);
bool skip_index_tuple(range_id_t range_info);
};
@ -1403,5 +1403,5 @@ public:
enum Join_algorithm get_join_alg() { return BKAH_JOIN_ALG; }
/* Check index condition of the joined table for a record from BKAH cache */
bool skip_index_tuple(char *range_info);
bool skip_index_tuple(range_id_t range_info);
};