summaryrefslogtreecommitdiff
path: root/mysql-test/t/union.test
diff options
context:
space:
mode:
authorunknown <bar@mysql.com>2005-03-28 14:17:47 +0500
committerunknown <bar@mysql.com>2005-03-28 14:17:47 +0500
commite62a32a3a5e0459bb4bcdc6597e986c6c4eecf67 (patch)
treebb333700d4574c19caa4f97faa7726fdb7d0c1b2 /mysql-test/t/union.test
parentf80b366f40cea4f4367c66e3423ec5a7370e5ed0 (diff)
downloadmariadb-git-e62a32a3a5e0459bb4bcdc6597e986c6c4eecf67.tar.gz
union.test:
Bug #6519 UNION with collation binary and latin1_swedish_ci fails now Prove that this problem was fixed with bug9425 fix too. mysql-test/t/union.test: Bug #6519 UNION with collation binary and latin1_swedish_ci fails now Prove that this problem was fixed with bug9425 fix too.
Diffstat (limited to 'mysql-test/t/union.test')
-rw-r--r--mysql-test/t/union.test6
1 files changed, 6 insertions, 0 deletions
diff --git a/mysql-test/t/union.test b/mysql-test/t/union.test
index 82f26f63254..26dc544482e 100644
--- a/mysql-test/t/union.test
+++ b/mysql-test/t/union.test
@@ -711,3 +711,9 @@ select * from ((select * from t1 limit 1) union (select * from t1 limit 1) union
select * from ((((select * from t1))) union (select * from t1) union (select * from t1)) a;
select * from ((select * from t1) union (((select * from t1))) union (select * from t1)) a;
drop table t1;
+
+#
+# Bugs#6519 UNION with collation binary and latin1_swedish_ci fails
+#
+set @val:=6;
+select concat('value is: ', @val) union select 'some text';