diff options
author | bar@mysql.com <> | 2005-03-28 14:17:47 +0500 |
---|---|---|
committer | bar@mysql.com <> | 2005-03-28 14:17:47 +0500 |
commit | 9852c6a082deefd7e2b20efbde7e4fae2954e8bc (patch) | |
tree | bb333700d4574c19caa4f97faa7726fdb7d0c1b2 /mysql-test/r/union.result | |
parent | e60daecc87f939a889e71fdb4306111007bc139f (diff) | |
download | mariadb-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.result | 5 |
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 |