summaryrefslogtreecommitdiff
path: root/sql/handler.h
diff options
context:
space:
mode:
authorSergey Petrunya <psergey@askmonty.org>2010-12-13 20:01:32 +0300
committerSergey Petrunya <psergey@askmonty.org>2010-12-13 20:01:32 +0300
commiteafc4bef33386b566654053f49762825618416fa (patch)
tree466091a5b740918fda48f125584c583604ef8ec3 /sql/handler.h
parent58b646001a1d9b00ca8e41bd2a6826ed40f81b5f (diff)
downloadmariadb-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.h6
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