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:
@ -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);
|
||||
};
|
||||
|
Reference in New Issue
Block a user