mirror of
https://github.com/MariaDB/server.git
synced 2025-07-29 05:21:33 +03:00
Cleanup/optimizations of structures and key usage to make it easier to move key-range-search to handler
This commit is contained in:
@ -35,7 +35,7 @@
|
||||
|
||||
|
||||
typedef struct st_key_part {
|
||||
uint16 key,part,part_length;
|
||||
uint16 key,part, store_length, length;
|
||||
uint8 null_bit;
|
||||
Field *field;
|
||||
Field::imagetype image_type;
|
||||
@ -68,7 +68,7 @@ class QUICK_RANGE :public Sql_alloc {
|
||||
|
||||
class QUICK_SELECT {
|
||||
public:
|
||||
bool next,dont_free;
|
||||
bool next,dont_free,sorted;
|
||||
int error;
|
||||
uint index, max_used_key_length, used_key_parts;
|
||||
TABLE *head;
|
||||
|
Reference in New Issue
Block a user