diff options
author | bar@mysql.com <> | 2004-09-01 15:39:15 +0500 |
---|---|---|
committer | bar@mysql.com <> | 2004-09-01 15:39:15 +0500 |
commit | 153e18a25237c89e347317beffea6ecc0121e894 (patch) | |
tree | 77ebcecccdab54d0eed739c08f6404be23bc1aff /sql/item_func.h | |
parent | 4f32cd2b3d415c9ce3d3835f1974428f37a7f235 (diff) | |
download | mariadb-git-153e18a25237c89e347317beffea6ecc0121e894.tar.gz |
Allow IN to convert arguments into Unicode in some cases.
Diffstat (limited to 'sql/item_func.h')
-rw-r--r-- | sql/item_func.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/sql/item_func.h b/sql/item_func.h index eaa0a044fd6..d45f7244e55 100644 --- a/sql/item_func.h +++ b/sql/item_func.h @@ -140,8 +140,11 @@ public: Field *tmp_table_field(TABLE *t_arg); Item *get_tmp_table_item(THD *thd); - bool agg_arg_collations(DTCollation &c, Item **items, uint nitems); - bool agg_arg_collations_for_comparison(DTCollation &c, Item **items, uint nitems); + bool agg_arg_collations(DTCollation &c, Item **items, uint nitems, + bool allow_superset_conversion= FALSE); + bool agg_arg_collations_for_comparison(DTCollation &c, + Item **items, uint nitems, + bool allow_superset_comversion= FALSE); bool walk(Item_processor processor, byte *arg); }; |