diff options
author | Sergey Petrunya <psergey@askmonty.org> | 2010-12-13 20:01:32 +0300 |
---|---|---|
committer | Sergey Petrunya <psergey@askmonty.org> | 2010-12-13 20:01:32 +0300 |
commit | eafc4bef33386b566654053f49762825618416fa (patch) | |
tree | 466091a5b740918fda48f125584c583604ef8ec3 /sql/handler.h | |
parent | 58b646001a1d9b00ca8e41bd2a6826ed40f81b5f (diff) | |
download | mariadb-git-eafc4bef33386b566654053f49762825618416fa.tar.gz |
MWL#121-125 DS-MRR improvements
- Address review feedback: change return type of RANGE_SEQ_IF::next()
Diffstat (limited to 'sql/handler.h')
-rw-r--r-- | sql/handler.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sql/handler.h b/sql/handler.h index cf92c117935..760754b21e6 100644 --- a/sql/handler.h +++ b/sql/handler.h @@ -1197,10 +1197,10 @@ typedef struct st_range_seq_if range OUT Information about the next range RETURN - 0 - Ok, the range structure filled with info about the next range - 1 - No more ranges + FALSE - Ok, the range structure filled with info about the next range + TRUE - No more ranges */ - uint (*next) (range_seq_t seq, KEY_MULTI_RANGE *range); + bool (*next) (range_seq_t seq, KEY_MULTI_RANGE *range); /* Check whether range_info orders to skip the next record |