From: Date: January 30 2006 9:53pm Subject: bk commit into 5.1 tree (patg:1.2084) BUG#14524 List-Archive: http://lists.mysql.com/commits/1897 X-Bug: 14524 Message-Id: <20060130205322.8A5B56586A8@govinda.patg.net> Below is the list of changes that have just been committed into a local 5.1 repository of patg. When patg 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.2084 06/01/30 12:53:16 patg@stripped +2 -0 BUG #14524 New test mysql-test/t/partition.test 1.12 06/01/30 12:53:12 patg@stripped +6 -0 BUG# 14524 New test to show that partition with blackhole won't crash. mysql-test/r/partition.result 1.11 06/01/30 12:53:12 patg@stripped +4 -0 BUG #14524 Added test to show that using blackhole and partitioning doesn't result in crash # 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: patg # Host: govinda.patg.net # Root: /home/patg/mysql-build/mysql-5.1-new --- 1.10/mysql-test/r/partition.result 2006-01-18 02:56:17 -08:00 +++ 1.11/mysql-test/r/partition.result 2006-01-30 12:53:12 -08:00 @@ -278,3 +278,7 @@ insert into t1 values (10,1); ERROR HY000: Table has no partition for value 11 drop table t1; +create table t1 (a int) ENGINE=blackhole partition by hash (a); +insert into t1 values (0); +insert into t1 values (0); +drop table t1; --- 1.11/mysql-test/t/partition.test 2006-01-18 03:09:00 -08:00 +++ 1.12/mysql-test/t/partition.test 2006-01-30 12:53:12 -08:00 @@ -353,3 +353,9 @@ drop table t1; +# BUG 14524 + create table t1 (a int) ENGINE=blackhole partition by hash (a); +insert into t1 values (0); +insert into t1 values (0); + +drop table t1;