mirror of
https://github.com/MariaDB/server.git
synced 2025-01-18 21:12:26 +01:00
additional fix for bug #13372 (decimal union)
This commit is contained in:
parent
9b88d25247
commit
f0dfa19548
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue