diff options
Diffstat (limited to 'mysql-test/r/union.result')
-rw-r--r-- | mysql-test/r/union.result | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mysql-test/r/union.result b/mysql-test/r/union.result index ece2970198b..8e288f9725f 100644 --- a/mysql-test/r/union.result +++ b/mysql-test/r/union.result @@ -649,7 +649,7 @@ f show create table t1; Table Create Table t1 CREATE TABLE `t1` ( - `f` char(12) binary default NULL + `f` binary(12) default NULL ) ENGINE=MyISAM DEFAULT CHARSET=latin1 drop table t1; create table t1 SELECT y from t2 UNION select da from t2; @@ -660,7 +660,7 @@ y show create table t1; Table Create Table t1 CREATE TABLE `t1` ( - `y` char(10) binary default NULL + `y` binary(10) default NULL ) ENGINE=MyISAM DEFAULT CHARSET=latin1 drop table t1; create table t1 SELECT y from t2 UNION select dt from t2; @@ -671,7 +671,7 @@ y show create table t1; Table Create Table t1 CREATE TABLE `t1` ( - `y` char(19) binary default NULL + `y` binary(19) default NULL ) ENGINE=MyISAM DEFAULT CHARSET=latin1 drop table t1; create table t1 SELECT da from t2 UNION select dt from t2; |