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

Post-merge fixes for index_merge/Unique/5.0

This commit is contained in:
sergefp@mysql.com
2003-11-24 20:54:57 +03:00
parent 5f9718adfb
commit 3d32afd736
4 changed files with 13 additions and 14 deletions

View File

@ -88,7 +88,7 @@ public:
QUICK_SELECT_I();
virtual ~QUICK_SELECT_I(){};
virtual int init() = 0;
virtual void reset(void) = 0;
virtual int reset(void) = 0;
virtual int get_next() = 0; /* get next record to retrieve */
virtual bool reverse_sorted() = 0;
virtual bool unique_key_range() { return false; }
@ -140,7 +140,7 @@ public:
MEM_ROOT *parent_alloc=NULL);
~QUICK_RANGE_SELECT();
void reset(void) { next=0; it.rewind(); }
int reset(void) { next=0; it.rewind(); return 0; }
int init();
int get_next();
bool reverse_sorted() { return 0; }