mirror of
https://github.com/MariaDB/server.git
synced 2026-05-15 03:17:20 +02:00
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.
This commit is contained in:
parent
f80b366f40
commit
e62a32a3a5
2 changed files with 11 additions and 0 deletions
|
|
@ -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';
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue