diff options
Diffstat (limited to 'mysql-test/suite/parts/r/partition_alter_maria.result')
-rw-r--r-- | mysql-test/suite/parts/r/partition_alter_maria.result | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mysql-test/suite/parts/r/partition_alter_maria.result b/mysql-test/suite/parts/r/partition_alter_maria.result index eca8378430f..5a34ec6b308 100644 --- a/mysql-test/suite/parts/r/partition_alter_maria.result +++ b/mysql-test/suite/parts/r/partition_alter_maria.result @@ -21,7 +21,7 @@ show create table t1; Table Create Table t1 CREATE TABLE `t1` ( `a` int(11) DEFAULT NULL -) ENGINE=Aria DEFAULT CHARSET=latin1 TRANSACTIONAL=1 +) ENGINE=Aria DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci TRANSACTIONAL=1 PARTITION BY HASH (`a`) PARTITIONS 2 drop table t1; @@ -43,7 +43,7 @@ Table Create Table t1 CREATE TABLE `t1` ( `id` int(11) DEFAULT NULL, `d` date DEFAULT NULL -) ENGINE=Aria DEFAULT CHARSET=latin1 +) ENGINE=Aria DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci PARTITION BY RANGE COLUMNS(`d`) (PARTITION `p1` VALUES LESS THAN (MAXVALUE) ENGINE = Aria) ALTER TABLE t1 REORGANIZE PARTITION p1 INTO @@ -59,7 +59,7 @@ Table Create Table t1 CREATE TABLE `t1` ( `id` int(11) DEFAULT NULL, `d` date DEFAULT NULL -) ENGINE=Aria DEFAULT CHARSET=latin1 +) ENGINE=Aria DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci PARTITION BY LIST (`id`) (PARTITION `p1` VALUES IN (1,2,3) ENGINE = Aria) ALTER TABLE t1 REORGANIZE PARTITION p1 INTO |