1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

Updated results

This commit is contained in:
unknown
2003-12-15 18:10:46 +01:00
parent 082953ec76
commit c3617bb88c
2 changed files with 2 additions and 2 deletions

View File

@ -427,7 +427,7 @@ t2 CREATE TABLE `t2` (
`ifnull(m,m)` char(1) default NULL,
`ifnull(n,n)` char(3) default NULL,
`ifnull(o,o)` char(10) default NULL
) TYPE=MyISAM DEFAULT CHARSET=latin1
) ENGINE=MyISAM DEFAULT CHARSET=latin1
drop table t1,t2;
create table t1(str varchar(10) default 'def',strnull varchar(10),intg int default '10',rel double default '3.14');
insert into t1 values ('','',0,0.0);