diff options
author | bell@sanja.is.com.ua <> | 2005-04-01 02:14:30 +0300 |
---|---|---|
committer | bell@sanja.is.com.ua <> | 2005-04-01 02:14:30 +0300 |
commit | 1029e533dff69d5f9cd689c514ed08a99d2c707f (patch) | |
tree | bfd8839a822ffd9c3bcccaa970cc506139ae4a9c /mysql-test/r/union.result | |
parent | 05d4ed14e47e27c86f9a7fabaff7e923d6a4c02c (diff) | |
download | mariadb-git-1029e533dff69d5f9cd689c514ed08a99d2c707f.tar.gz |
postmerge 4.1->5.0 fixes
Diffstat (limited to 'mysql-test/r/union.result')
-rw-r--r-- | mysql-test/r/union.result | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mysql-test/r/union.result b/mysql-test/r/union.result index ee09226797c..8c8e12d8838 100644 --- a/mysql-test/r/union.result +++ b/mysql-test/r/union.result @@ -565,7 +565,7 @@ a show create table t1; Table Create Table t1 CREATE TABLE `t1` ( - `a` decimal(20,1) NOT NULL default '0.0' + `a` decimal(19,1) NOT NULL default '0.0' ) ENGINE=MyISAM DEFAULT CHARSET=latin1 drop table t1; create table t2 (it1 tinyint, it2 tinyint not null, i int not null, ib bigint, f float, d double, y year, da date, dt datetime, sc char(10), sv varchar(10), b blob, tx text); @@ -1226,7 +1226,7 @@ drop table t2; create table t2 select a from t1 union select a from t1; show columns from t2; Field Type Null Key Default Extra -a char(1) +a varchar(1) NO drop table t2; create table t2 select a from t1 union select c from t1; ERROR HY000: Illegal mix of collations (utf8_general_ci,IMPLICIT) and (latin1_swedish_ci,IMPLICIT) for operation 'UNION' |