summaryrefslogtreecommitdiff
path: root/mysql-test/r/func_misc.result
diff options
context:
space:
mode:
authortsmith/tim@siva.hindu.god <>2006-08-23 18:02:31 -0600
committertsmith/tim@siva.hindu.god <>2006-08-23 18:02:31 -0600
commit45460bd0afbf5f31111ee44f352622cd79402a0d (patch)
tree85b2e4bdba015b6e73f9c6b852f94f169899e51a /mysql-test/r/func_misc.result
parentdba7b8e81c462e81256c95986d0b5daec9ba36ac (diff)
downloadmariadb-git-45460bd0afbf5f31111ee44f352622cd79402a0d.tar.gz
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
Diffstat (limited to 'mysql-test/r/func_misc.result')
-rw-r--r--mysql-test/r/func_misc.result4
1 files changed, 4 insertions, 0 deletions
diff --git a/mysql-test/r/func_misc.result b/mysql-test/r/func_misc.result
index 8bcdd8b7cbc..adf2035173f 100644
--- a/mysql-test/r/func_misc.result
+++ b/mysql-test/r/func_misc.result
@@ -93,3 +93,7 @@ SELECT IS_USED_LOCK('bug16501');
IS_USED_LOCK('bug16501')
NULL
DROP TABLE t1;
+select export_set(3, _latin1'foo', _utf8'bar', ',', 4);
+export_set(3, _latin1'foo', _utf8'bar', ',', 4)
+foo,foo,bar,bar
+End of 4.1 tests