diff options
author | unknown <hf@deer.(none)> | 2005-09-27 16:23:37 +0500 |
---|---|---|
committer | unknown <hf@deer.(none)> | 2005-09-27 16:23:37 +0500 |
commit | 0834f7d3fd950dc51d655e5b7eb207999c585e87 (patch) | |
tree | 90c234641c30ad8b9ef53e0ae4a185e93dd8f91d /mysql-test/r/union.result | |
parent | 57e700d7d790f97663044d32aac0102c501f3052 (diff) | |
download | mariadb-git-0834f7d3fd950dc51d655e5b7eb207999c585e87.tar.gz |
additional fix for bug #13372 (decimal union)
mysql-test/r/union.result:
test result changed
Diffstat (limited to 'mysql-test/r/union.result')
-rw-r--r-- | mysql-test/r/union.result | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/r/union.result b/mysql-test/r/union.result index a3dd2c5c291..318bfa2cda8 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` double(53,1) NOT NULL default '0.0' + `a` double(21,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); |