BUG# 14524 - Partitions: crash if blackhole

This bug was fixed through other patches.  This test case just shows 
that it is fixed.


mysql-test/r/partition_hash.result:
  result block for bug #14524
mysql-test/t/partition_hash.test:
  test block for bug# 14524
This commit is contained in:
unknown 2006-01-30 10:07:39 -06:00
parent 2f265f0cf5
commit a0b5fe13e0
2 changed files with 9 additions and 0 deletions

View File

@ -70,3 +70,6 @@ select * from t1;
f1 f2
-1 #######
drop table t1;
CREATE TABLE t1 (s1 int) ENGINE=BLACKHOLE PARTITION BY HASH (s1);
INSERT INTO t1 VALUES (0);
DROP TABLE t1;

View File

@ -84,3 +84,9 @@ INSERT INTO t1 SET f1 = 0 - 1, f2 = '#######';
select * from t1;
drop table t1;
#
# BUG# 14524 Partitions: crash if blackhole
#
CREATE TABLE t1 (s1 int) ENGINE=BLACKHOLE PARTITION BY HASH (s1);
INSERT INTO t1 VALUES (0);
DROP TABLE t1;