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

After merge fix:

Adjusting SHOW CREATE TABLE output from 5.0 to 5.1 format
This commit is contained in:
bar@mysql.com/bar.myoffice.izhnet.ru
2007-10-16 15:22:44 +05:00
parent 37ee3f8990
commit 73834a4a86
4 changed files with 8 additions and 8 deletions

View File

@ -8,8 +8,8 @@ select null, null;
show create table t1;
Table Create Table
t1 CREATE TABLE `t1` (
`s1` varchar(64) default NULL,
`s2` varchar(64) default NULL
`s1` varchar(64) DEFAULT NULL,
`s2` varchar(64) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1
delete from t1;
insert into t1 values('aaa','aaa');