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/partition_range.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/partition_range.result')
-rw-r--r-- | mysql-test/r/partition_range.result | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/r/partition_range.result b/mysql-test/r/partition_range.result index 5e7a2832747..4f92e127fe0 100644 --- a/mysql-test/r/partition_range.result +++ b/mysql-test/r/partition_range.result @@ -151,7 +151,7 @@ t1 CREATE TABLE `t1` ( `a` int(11) NOT NULL, `b` int(11) NOT NULL, `c` int(11) NOT NULL, - `d` int(11) default NULL, + `d` int(11) DEFAULT NULL, PRIMARY KEY (`a`,`b`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 PARTITION BY RANGE (a) SUBPARTITION BY HASH (a+b) (PARTITION x1 VALUES LESS THAN (1) (SUBPARTITION x11 ENGINE = MyISAM, SUBPARTITION x12 ENGINE = MyISAM), PARTITION x2 VALUES LESS THAN (5) (SUBPARTITION x21 ENGINE = MyISAM, SUBPARTITION x22 ENGINE = MyISAM)) drop table t1; |