diff options
author | unknown <serg@serg.mysql.com> | 2001-11-22 16:00:11 +0100 |
---|---|---|
committer | unknown <serg@serg.mysql.com> | 2001-11-22 16:00:11 +0100 |
commit | 198df9007eaaf1aacbdff6c3e6b438bfd013a66c (patch) | |
tree | d6f7c3326335cf1432cad86e47e88950fca45ec9 /sql/opt_range.h | |
parent | 1bdd19639d583cf182731c82eef08a21d2751f5c (diff) | |
download | mariadb-git-198df9007eaaf1aacbdff6c3e6b438bfd013a66c.tar.gz |
fixes for ft-boolean and range optimizer
Diffstat (limited to 'sql/opt_range.h')
-rw-r--r-- | sql/opt_range.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/opt_range.h b/sql/opt_range.h index 50215b94be0..07d1216a42f 100644 --- a/sql/opt_range.h +++ b/sql/opt_range.h @@ -75,7 +75,7 @@ public: QUICK_SELECT(TABLE *table,uint index_arg,bool no_alloc=0); virtual ~QUICK_SELECT(); void reset(void) { next=0; it.rewind(); } - virtual int init(); + int init() { return error=file->index_init(index); } virtual int get_next(); int cmp_next(QUICK_RANGE *range); bool unique_key_range(); |