summaryrefslogtreecommitdiff
path: root/mysql-test/r/information_schema_part.result
diff options
context:
space:
mode:
authorunknown <mikael@c-3d08e253.1238-1-64736c10.cust.bredbandsbolaget.se>2006-06-03 18:37:31 -0400
committerunknown <mikael@c-3d08e253.1238-1-64736c10.cust.bredbandsbolaget.se>2006-06-03 18:37:31 -0400
commitcd1f605c901228c07606ec49c9fd3bcfcc927afc (patch)
tree44ed38ce07377309c8c20c7677ac1eb9fdc551ef /mysql-test/r/information_schema_part.result
parent9b3dd386d14c6b4b22b50742e124467632e89c8c (diff)
downloadmariadb-git-cd1f605c901228c07606ec49c9fd3bcfcc927afc.tar.gz
BUG#19067: Crash for default subpartitioning when altering the table
mysql-test/r/information_schema_part.result: Bug fix sql/partition_element.h: Review fixes sql/sql_partition.cc: Review fixes
Diffstat (limited to 'mysql-test/r/information_schema_part.result')
-rw-r--r--mysql-test/r/information_schema_part.result2
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/r/information_schema_part.result b/mysql-test/r/information_schema_part.result
index e1bc6ef8700..ef3ee19656b 100644
--- a/mysql-test/r/information_schema_part.result
+++ b/mysql-test/r/information_schema_part.result
@@ -119,7 +119,7 @@ SHOW CREATE TABLE t1;
Table Create Table
t1 CREATE TABLE `t1` (
`a` int(11) DEFAULT NULL
-) ENGINE=MyISAM DEFAULT CHARSET=latin1 PARTITION BY RANGE (a) SUBPARTITION BY LINEAR HASH (a) (PARTITION p0 VALUES LESS THAN (10) )
+) ENGINE=MyISAM DEFAULT CHARSET=latin1 PARTITION BY RANGE (a) SUBPARTITION BY LINEAR HASH (a) (PARTITION p0 VALUES LESS THAN (10) ENGINE = MyISAM)
select SUBPARTITION_METHOD FROM information_schema.partitions WHERE
table_schema="test" AND table_name="t1";
SUBPARTITION_METHOD