1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-01 03:47:19 +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

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

View File

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

View File

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

View File

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