diff options
author | unknown <bar@mysql.com> | 2004-11-02 16:02:12 +0400 |
---|---|---|
committer | unknown <bar@mysql.com> | 2004-11-02 16:02:12 +0400 |
commit | fc04692c8b5fb192b9be52d4672423aa41ebc6b1 (patch) | |
tree | bfda701b872e8feb1aace99aa6e20993e2150d6b /sql/item_func.h | |
parent | 0d92f0c777e170b4de4eff45e3f1ed08f3ccc836 (diff) | |
download | mariadb-git-fc04692c8b5fb192b9be52d4672423aa41ebc6b1.tar.gz |
Many files:
Allow mixing of different character sets for more SQL functions.
item_func.h:
Allow mixing of different character sets for more SQL functions..
sql/item_cmpfunc.cc:
Allow mixing of different character sets for more SQL functions.
sql/item_func.cc:
Allow mixing of different character sets for more SQL functions.
sql/item_func.h:
Allow mixing of different character sets for more SQL functions..
sql/item_strfunc.cc:
Allow mixing of different character sets for more SQL functions.
sql/item.cc:
Allow mixing of different character sets for more SQL functions.
sql/item.h:
Allow mixing of different character sets for more SQL functions.
mysql-test/t/ctype_recoding.test:
Allow mixing of different character sets for more SQL functions.
mysql-test/r/ctype_recoding.result:
Allow mixing of different character sets for more SQL functions.
Diffstat (limited to 'sql/item_func.h')
-rw-r--r-- | sql/item_func.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sql/item_func.h b/sql/item_func.h index 963038227a2..ce2b34499d6 100644 --- a/sql/item_func.h +++ b/sql/item_func.h @@ -145,7 +145,8 @@ public: bool agg_arg_collations_for_comparison(DTCollation &c, Item **items, uint nitems, uint flags= 0); - + bool agg_arg_charsets(DTCollation &c, Item **items, uint nitems, + uint flags= 0); bool walk(Item_processor processor, byte *arg); }; |