diff options
Diffstat (limited to 'sql/opt_range.h')
-rw-r--r-- | sql/opt_range.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/sql/opt_range.h b/sql/opt_range.h index 225af276e55..6a0234e62fe 100644 --- a/sql/opt_range.h +++ b/sql/opt_range.h @@ -38,6 +38,12 @@ typedef struct st_key_part { } KEY_PART; +/* + A "MIN_TUPLE < tbl.key_tuple < MAX_TUPLE" interval. + + One of endpoints may be absent. 'flags' member has flags which tell whether + the endpoints are '<' or '<='. +*/ class QUICK_RANGE :public Sql_alloc { public: uchar *min_key,*max_key; |