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:
@ -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');
|
||||
|
Reference in New Issue
Block a user