1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-01 03:47:19 +03:00

Update result to 5.1 version format

This commit is contained in:
msvensson@neptunus.(none)
2006-11-29 23:48:39 +01:00
parent 298edec4c1
commit 741eb0179a

View File

@ -29,8 +29,8 @@ drop table t1;
show create table t1;
Table Create Table
t1 CREATE TABLE `t1` (
`a` varbinary(255) default NULL,
`b` varchar(255) default NULL
`a` varbinary(255) DEFAULT NULL,
`b` varchar(255) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1
select length(a), length(b) from t1;
length(a) length(b)
@ -45,8 +45,8 @@ test.t1 repair status OK
show create table t1;
Table Create Table
t1 CREATE TABLE `t1` (
`a` varbinary(255) default NULL,
`b` varchar(255) default NULL
`a` varbinary(255) DEFAULT NULL,
`b` varchar(255) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1
select length(a), length(b) from t1;
length(a) length(b)