diff options
author | unknown <bar@mysql.com> | 2004-12-08 14:03:29 +0400 |
---|---|---|
committer | unknown <bar@mysql.com> | 2004-12-08 14:03:29 +0400 |
commit | 22b16624d5170bd6cc985be7476dc58e5e721b07 (patch) | |
tree | ca5568204a0fa35f07cbdb731b7b3fddac3614d2 /mysql-test/r/cast.result | |
parent | 3a994c8a731b4c1cb15226eea2702cbebc12041f (diff) | |
download | mariadb-git-22b16624d5170bd6cc985be7476dc58e5e721b07.tar.gz |
- VARCHAR(n) with binary character set is now displayed as VARBINARY(N).
- CREATE TABLE t1 SELECT BINARY 'literal'
now creates a VARBINARY() column, not a BINARY().
Diffstat (limited to 'mysql-test/r/cast.result')
-rw-r--r-- | mysql-test/r/cast.result | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/mysql-test/r/cast.result b/mysql-test/r/cast.result index d784460a68d..a893e6ee4ed 100644 --- a/mysql-test/r/cast.result +++ b/mysql-test/r/cast.result @@ -91,11 +91,11 @@ ab a ab a a show create table t1; Table Create Table t1 CREATE TABLE `t1` ( - `c1` varchar(2) NOT NULL default '', - `c2` varchar(2) NOT NULL default '', - `c3` varchar(2) NOT NULL default '', - `c4` varchar(2) NOT NULL default '', - `c5` varchar(2) NOT NULL default '' + `c1` varbinary(2) NOT NULL default '', + `c2` varbinary(2) NOT NULL default '', + `c3` varbinary(2) NOT NULL default '', + `c4` varbinary(2) NOT NULL default '', + `c5` varbinary(2) NOT NULL default '' ) ENGINE=MyISAM DEFAULT CHARSET=latin1 drop table t1; select |