diff options
author | unknown <msvensson@neptunus.(none)> | 2006-11-29 23:48:39 +0100 |
---|---|---|
committer | unknown <msvensson@neptunus.(none)> | 2006-11-29 23:48:39 +0100 |
commit | cadef27521616ba6caea1556ae053a09e3bde6d8 (patch) | |
tree | 6583d92f72263a19e4b5574e38016b02ea8432e1 | |
parent | 2b58a8ec48ea5b5cf14798106b1ce6eff9dc787d (diff) | |
download | mariadb-git-cadef27521616ba6caea1556ae053a09e3bde6d8.tar.gz |
Update result to 5.1 version format
-rw-r--r-- | mysql-test/r/varbinary.result | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/mysql-test/r/varbinary.result b/mysql-test/r/varbinary.result index 60445c022c6..e1ac58ecd52 100644 --- a/mysql-test/r/varbinary.result +++ b/mysql-test/r/varbinary.result @@ -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) |