summaryrefslogtreecommitdiff
path: root/mysql-test/r/union.result
diff options
context:
space:
mode:
authorbar@mysql.com <>2005-03-28 14:17:47 +0500
committerbar@mysql.com <>2005-03-28 14:17:47 +0500
commit9852c6a082deefd7e2b20efbde7e4fae2954e8bc (patch)
treebb333700d4574c19caa4f97faa7726fdb7d0c1b2 /mysql-test/r/union.result
parente60daecc87f939a889e71fdb4306111007bc139f (diff)
downloadmariadb-git-9852c6a082deefd7e2b20efbde7e4fae2954e8bc.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.
Diffstat (limited to 'mysql-test/r/union.result')
-rw-r--r--mysql-test/r/union.result5
1 files changed, 5 insertions, 0 deletions
diff --git a/mysql-test/r/union.result b/mysql-test/r/union.result
index f58f0f5b0ac..bfa169af417 100644
--- a/mysql-test/r/union.result
+++ b/mysql-test/r/union.result
@@ -1195,3 +1195,8 @@ a b
2 b
3 c
drop table t1;
+set @val:=6;
+select concat('value is: ', @val) union select 'some text';
+concat('value is: ', @val)
+value is: 6
+some text