diff options
author | mikael/pappa@dator5.(none) <> | 2006-07-10 17:08:42 -0400 |
---|---|---|
committer | mikael/pappa@dator5.(none) <> | 2006-07-10 17:08:42 -0400 |
commit | 65979719c77878c205994284000d820935e9d26d (patch) | |
tree | 38367371fcfbb953af90c4fca59068a3a6c06bc9 /mysql-test/r/partition_mgm.result | |
parent | 55109a802dd245ce9f8eb79d489ff252dcede7a4 (diff) | |
download | mariadb-git-65979719c77878c205994284000d820935e9d26d.tar.gz |
BUG#20893: Valgrind error
Diffstat (limited to 'mysql-test/r/partition_mgm.result')
-rw-r--r-- | mysql-test/r/partition_mgm.result | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/mysql-test/r/partition_mgm.result b/mysql-test/r/partition_mgm.result index 0f2c8c57872..f64ffaff495 100644 --- a/mysql-test/r/partition_mgm.result +++ b/mysql-test/r/partition_mgm.result @@ -24,3 +24,15 @@ hello/master-data/test/t1#P#p0.MYD hello/master-data/test/t1#P#p0.MYI hello/master-data/test/t1.frm hello/master-data/test/t1.par +drop table t1; +create table t1 (a int) +partition by list (a) +subpartition by hash (a) +(partition p11 values in (1,2), +partition p12 values in (3,4)); +alter table t1 REORGANIZE partition p11, p12 INTO +(partition p1 values in (1,2,3,4)); +alter table t1 REORGANIZE partition p1 INTO +(partition p11 values in (1,2), +partition p12 values in (3,4)); +drop table t1; |