diff options
author | unknown <bar@bar.mysql.r18.ru> | 2002-08-26 17:33:44 +0500 |
---|---|---|
committer | unknown <bar@bar.mysql.r18.ru> | 2002-08-26 17:33:44 +0500 |
commit | 1895448e66b39542d58a77e705449b92414ff3f7 (patch) | |
tree | 6343e78cbc76f11dcefea65fd7972f02ce13ac0b /sql/item_strfunc.h | |
parent | 7f13b1bdd59e798af7477f4eda46ce249c4b5c4e (diff) | |
download | mariadb-git-1895448e66b39542d58a77e705449b92414ff3f7.tar.gz |
Fix that this didn't work as far as sorting for ORDER BY was removed by optimizer:
SELECT k FROM t1 GROUP BY k COLLATE latin1 ORDER BY k COLLATE latin1_de
Diffstat (limited to 'sql/item_strfunc.h')
-rw-r--r-- | sql/item_strfunc.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sql/item_strfunc.h b/sql/item_strfunc.h index becb7981acd..997d9c8d834 100644 --- a/sql/item_strfunc.h +++ b/sql/item_strfunc.h @@ -508,6 +508,7 @@ public: max_length = args[0]->max_length; str_value.set_charset(set_collation); } + bool eq(const Item *item, bool binary_cmp) const; const char *func_name() const { return "set_collation"; } }; |