summaryrefslogtreecommitdiff
path: root/mysql-test/t/partition.test
diff options
context:
space:
mode:
authormikael@c-870ae253.1238-1-64736c10.cust.bredbandsbolaget.se <>2006-05-24 13:41:04 -0400
committermikael@c-870ae253.1238-1-64736c10.cust.bredbandsbolaget.se <>2006-05-24 13:41:04 -0400
commitd1098a85eb2a1e5b8f1c74cd2b553e7c1f02404a (patch)
tree680280c0e4ac213352352b07c05d0e7107b6e337 /mysql-test/t/partition.test
parent13ae6420fd63f2c7abea75d0a4745e2d17ea4a53 (diff)
parentcb0a4f74236ded612654935d023586429bf1f82c (diff)
downloadmariadb-git-d1098a85eb2a1e5b8f1c74cd2b553e7c1f02404a.tar.gz
Merge mronstrom@bk-internal.mysql.com:/home/bk/mysql-5.1-new
into c-870ae253.1238-1-64736c10.cust.bredbandsbolaget.se:/home/pappa/bug19304
Diffstat (limited to 'mysql-test/t/partition.test')
-rw-r--r--mysql-test/t/partition.test8
1 files changed, 8 insertions, 0 deletions
diff --git a/mysql-test/t/partition.test b/mysql-test/t/partition.test
index 1a64537b6fc..f7ce146c109 100644
--- a/mysql-test/t/partition.test
+++ b/mysql-test/t/partition.test
@@ -1024,6 +1024,14 @@ create index inx1 on t1(a);
drop table t1;
#
+# BUG 19304 Partitions: MERGE handler not allowed in partitioned tables
+#
+--error ER_PARTITION_MERGE_ERROR
+create table t1 (a int)
+partition by key (a)
+(partition p0 engine = MERGE);
+
+#
# BUG 19062 Partition clause ignored if CREATE TABLE ... AS SELECT ...;
#
create table t1 (a varchar(1))