diff options
author | msvensson@neptunus.(none) <> | 2006-02-22 10:09:59 +0100 |
---|---|---|
committer | msvensson@neptunus.(none) <> | 2006-02-22 10:09:59 +0100 |
commit | c4b1fb68b435bab222fbfc3bb746a30bbca3b7c4 (patch) | |
tree | ac3130814138d99687fb692ac385fa347baeb55c /mysql-test/r/archive_bitfield.result | |
parent | 751d625865f8f8ed869ccb1ca73d816f60f4cfa5 (diff) | |
download | mariadb-git-c4b1fb68b435bab222fbfc3bb746a30bbca3b7c4.tar.gz |
Bug#10460 SHOW CREATE TABLE uses inconsistent upper/lower case
Diffstat (limited to 'mysql-test/r/archive_bitfield.result')
-rw-r--r-- | mysql-test/r/archive_bitfield.result | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mysql-test/r/archive_bitfield.result b/mysql-test/r/archive_bitfield.result index 2cab369cd90..7e3b82a5caf 100644 --- a/mysql-test/r/archive_bitfield.result +++ b/mysql-test/r/archive_bitfield.result @@ -6,8 +6,8 @@ b bit(64) show create table t1; Table Create Table t1 CREATE TABLE `t1` ( - `pk1` int(11) NOT NULL auto_increment, - `b` bit(64) default NULL, + `pk1` int(11) NOT NULL AUTO_INCREMENT, + `b` bit(64) DEFAULT NULL, PRIMARY KEY (`pk1`) ) ENGINE=ARCHIVE DEFAULT CHARSET=latin1 insert into t1 values |