diff options
author | unknown <timour@askmonty.org> | 2012-11-01 21:36:31 +0200 |
---|---|---|
committer | unknown <timour@askmonty.org> | 2012-11-01 21:36:31 +0200 |
commit | a1108a0b6c098c7bae8b12d31b6338d563a318c1 (patch) | |
tree | cb513a6dca8a0d7dfa14b4d13e930788139280a7 /mysql-test/t/partition.test | |
parent | 9b6fe965033aab5eb20a4f2eefa482534b15c424 (diff) | |
parent | 8b5d345eea3b4df053a1cdbff398d270af9547ad (diff) | |
download | mariadb-git-a1108a0b6c098c7bae8b12d31b6338d563a318c1.tar.gz |
Merge 5.2 -> 5.3
Diffstat (limited to 'mysql-test/t/partition.test')
-rw-r--r-- | mysql-test/t/partition.test | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/mysql-test/t/partition.test b/mysql-test/t/partition.test index 19182391ef5..f035528444f 100644 --- a/mysql-test/t/partition.test +++ b/mysql-test/t/partition.test @@ -2267,6 +2267,14 @@ SELECT 1 FROM t1 WHERE b < SOME DROP TABLE t1; +--echo +--echo MDEV-612 Valgrind error in ha_maria::check_if_incompatible_data +--echo + +CREATE TABLE t1 (a INT, b INT, KEY(a)) ENGINE=Aria PARTITION BY KEY(a) PARTITIONS 2; +ALTER TABLE t1 ADD KEY (b); +drop table t1; + --echo End of 5.1 tests |