1
0
mirror of https://github.com/MariaDB/server.git synced 2026-01-06 05:22:24 +03:00

Bug #21531: EXPORT_SET() doesn't accept args with coercible character sets

- Fix typo in Item_func_export_set::fix_length_and_dec() which caused character set aggregation to fail
- Remove default argument from last arg of agg_arg_charsets() function, to reduce potential errors
This commit is contained in:
tsmith/tim@siva.hindu.god
2006-08-23 18:02:31 -06:00
parent dba7b8e81c
commit 45460bd0af
4 changed files with 13 additions and 5 deletions

View File

@@ -83,4 +83,9 @@ connection default;
DROP TABLE t1;
# End of 4.1 tests
#
# Bug #21531: EXPORT_SET() doesn't accept args with coercible character sets
#
select export_set(3, _latin1'foo', _utf8'bar', ',', 4);
--echo End of 4.1 tests