diff options
author | bar@mysql.com <> | 2004-11-18 16:15:48 +0400 |
---|---|---|
committer | bar@mysql.com <> | 2004-11-18 16:15:48 +0400 |
commit | fe3b359b747105a664065ebb3fc30b3b4891c472 (patch) | |
tree | e82d547acde3aff9da83053ba9d9cbbee23c0683 /mysql-test/t/union.test | |
parent | 15621600b308df1b110681f208a0e13bf0c958d7 (diff) | |
download | mariadb-git-fe3b359b747105a664065ebb3fc30b3b4891c472.tar.gz |
Check that the third UNION part with COLLATE
clause resolves collation conflict for the
first and the second parts pair.
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 36027e8c4cb..468a88b83db 100644 --- a/mysql-test/t/union.test +++ b/mysql-test/t/union.test @@ -652,5 +652,11 @@ create table t1 as (select b collate latin1_german1_ci from t2); show create table t1; drop table t1; +create table t1 as +(select a from t2) union +(select b from t2) union +(select 'c' collate latin1_german1_ci from t2); +show create table t1; +drop table t1; drop table t2; |