1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-01 03:47:19 +03:00

MWL#121-125 DS-MRR improvements

- Address Monty's review feedback, part 1
- Fix buildbot failure
This commit is contained in:
Sergey Petrunya
2010-11-22 19:34:03 +03:00
parent 2ec43747f5
commit a6c1d56e08
5 changed files with 87 additions and 55 deletions

View File

@ -137,7 +137,7 @@ class Key_value_records_iterator
public:
int init(Mrr_ordered_index_reader *owner_arg);
int get_next();
void close_();
void move_to_next_key_value();
};
@ -299,8 +299,8 @@ private:
RANGE_SEQ_IF mrr_funcs;
range_seq_t mrr_iter;
static int key_tuple_cmp(void* arg, uchar* key1, uchar* key2);
static int key_tuple_cmp_reverse(void* arg, uchar* key1, uchar* key2);
static int compare_keys(void* arg, uchar* key1, uchar* key2);
static int compare_keys_reverse(void* arg, uchar* key1, uchar* key2);
friend class Key_value_records_iterator;
friend class DsMrr_impl;