diff options
author | monty@mashka.mysql.fi <> | 2003-02-06 16:55:59 +0200 |
---|---|---|
committer | monty@mashka.mysql.fi <> | 2003-02-06 16:55:59 +0200 |
commit | cf9668fd37cd5ee096033887251cfc653359b3e4 (patch) | |
tree | af5a612629ae80e6237cf2b6ffc48017d60acef3 /sql/opt_range.h | |
parent | 5ce0cd16b8b9fa05c781ac6ff4687133ed145d84 (diff) | |
download | mariadb-git-cf9668fd37cd5ee096033887251cfc653359b3e4.tar.gz |
Added START TRANSACTION syntax
Added ALL as parameter option for all group functions.
Make join handling uniform. This allows us to use ',', JOIN and INNER JOIN the same way.
Sort NULL last if DESC is used (ANSI SQL 99 requirement)
Diffstat (limited to 'sql/opt_range.h')
-rw-r--r-- | sql/opt_range.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sql/opt_range.h b/sql/opt_range.h index af977eb3093..6a6b5ae3810 100644 --- a/sql/opt_range.h +++ b/sql/opt_range.h @@ -100,7 +100,9 @@ public: private: int cmp_prev(QUICK_RANGE *range); bool range_reads_after_key(QUICK_RANGE *range); +#ifdef NOT_USED bool test_if_null_range(QUICK_RANGE *range, uint used_key_parts); +#endif void reset(void) { next=0; rev_it.rewind(); } List<QUICK_RANGE> rev_ranges; List_iterator<QUICK_RANGE> rev_it; |