diff options
author | holyfoot@hf-ibm.(none) <> | 2005-05-06 01:01:39 +0500 |
---|---|---|
committer | holyfoot@hf-ibm.(none) <> | 2005-05-06 01:01:39 +0500 |
commit | 8f3647005c253f30825d4e2e560d86783b611f8a (patch) | |
tree | 2a5b7c2ccfaeb6ea061bc33fe28c66d4988ff336 /mysql-test/r/union.result | |
parent | 196a87cbd68966012d0b71c7f92846719991b86e (diff) | |
download | mariadb-git-8f3647005c253f30825d4e2e560d86783b611f8a.tar.gz |
Tests and results fixed with last precision/decimal related modifications
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 dcd364f1422..aae3c414c5c 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(19,1) NOT NULL default '0.0' + `a` decimal(3,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); @@ -792,7 +792,7 @@ d show create table t3; Table Create Table t3 CREATE TABLE `t3` ( - `d` decimal(19,9) default NULL + `d` decimal(18,9) default NULL ) ENGINE=MyISAM DEFAULT CHARSET=latin1 drop table t1,t2,t3; create table t1 select 1 union select -1; |