From: Date: January 30 2006 2:40pm Subject: bk commit into 5.1 tree (reggie:1.2096) BUG#14524 List-Archive: http://lists.mysql.com/commits/1893 X-Bug: 14524 Message-Id: <20060130134015.D41432CA40@linux.site> Below is the list of changes that have just been committed into a local 5.1 repository of reggie. When reggie does a push these changes will be propagated to the main repository and, within 24 hours after the push, to the public repository. For information on how to access the public repository see http://dev.mysql.com/doc/mysql/en/installing-source-tree.html ChangeSet 1.2096 06/01/30 07:40:06 reggie@stripped +2 -0 BUG# 14524 - Partitions: crash if blackhole This bug was fixed through other patches. This test case just shows that it is fixed. mysql-test/t/partition_hash.test 1.3 06/01/30 07:39:59 reggie@stripped +6 -0 test block for bug# 14524 mysql-test/r/partition_hash.result 1.3 06/01/30 07:39:58 reggie@stripped +3 -0 result block for bug #14524 # This is a BitKeeper patch. What follows are the unified diffs for the # set of deltas contained in the patch. The rest of the patch, the part # that BitKeeper cares about, is below these diffs. # User: reggie # Host: linux.site # Root: /home/reggie/work/mysql-5.1 --- 1.2/mysql-test/r/partition_hash.result 2006-01-06 18:52:35 -06:00 +++ 1.3/mysql-test/r/partition_hash.result 2006-01-30 07:39:58 -06:00 @@ -70,3 +70,6 @@ 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; --- 1.2/mysql-test/t/partition_hash.test 2006-01-06 18:52:35 -06:00 +++ 1.3/mysql-test/t/partition_hash.test 2006-01-30 07:39:59 -06:00 @@ -84,3 +84,9 @@ 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;