diff options
author | serg@serg.mylan <> | 2004-11-20 18:36:41 +0100 |
---|---|---|
committer | serg@serg.mylan <> | 2004-11-20 18:36:41 +0100 |
commit | 2d3dd65cc1512930273b3c82b635e43558ab4e6a (patch) | |
tree | 62ae289d237eebb2f3c921cb532cc66e70229341 /mysql-test/r/union.result | |
parent | 15ada105ac9159e6f026c3bc6934c33f3387d9d7 (diff) | |
parent | 4e52cc2ded1316c2607079e9f4d513d52fc06312 (diff) | |
download | mariadb-git-2d3dd65cc1512930273b3c82b635e43558ab4e6a.tar.gz |
merged
Diffstat (limited to 'mysql-test/r/union.result')
-rw-r--r-- | mysql-test/r/union.result | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/mysql-test/r/union.result b/mysql-test/r/union.result index acfd5a97dce..de86673b05f 100644 --- a/mysql-test/r/union.result +++ b/mysql-test/r/union.result @@ -1110,4 +1110,14 @@ t1 CREATE TABLE `t1` ( `a` char(1) character set latin1 collate latin1_german1_ci default NULL ) ENGINE=MyISAM DEFAULT CHARSET=latin1 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; +Table Create Table +t1 CREATE TABLE `t1` ( + `a` char(1) character set latin1 collate latin1_german1_ci default NULL +) ENGINE=MyISAM DEFAULT CHARSET=latin1 +drop table t1; drop table t2; |