diff options
author | unknown <bar@mysql.com> | 2005-03-28 14:17:47 +0500 |
---|---|---|
committer | unknown <bar@mysql.com> | 2005-03-28 14:17:47 +0500 |
commit | e62a32a3a5e0459bb4bcdc6597e986c6c4eecf67 (patch) | |
tree | bb333700d4574c19caa4f97faa7726fdb7d0c1b2 /mysql-test/t/union.test | |
parent | f80b366f40cea4f4367c66e3423ec5a7370e5ed0 (diff) | |
download | mariadb-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.test | 6 |
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'; |