Bug #17763 mysqld cores with list partitioning if update to missing partition
Submitted: 28 Feb 2006 11:13 Modified: 28 Feb 2006 21:00
Reporter: Tomas Ulin
Status: Closed
Category:Server: Partition Severity:S2 (Serious)
Version:5.1.7 OS:
Assigned to: Tomas Ulin Target Version:

[28 Feb 2006 11:13] Tomas Ulin
Description:
 CREATE TABLE t1     (id MEDIUMINT NOT NULL) ENGINE=NDB   PARTITION BY LIST(id)    
(PARTITION p0 VALUES IN (2, 4),      PARTITION p1 VALUES IN (42, 142));
INSERT INTO t1 VALUES (2);
update t1 set id=5 where id=2;

crash

How to repeat:
see above
[28 Feb 2006 11:33] Bugs System
A patch for this bug has been committed. After review, it may
be pushed to the relevant source trees for release in the next
version. You can access the patch from:

  http://lists.mysql.com/commits/3230
[28 Feb 2006 13:43] Tomas Ulin
pushed to 5.1.8
[28 Feb 2006 21:00] Jon Stephens
Thank you for your bug report. This issue has been committed to our
source repository of that product and will be incorporated into the
next release.

If necessary, you can access the source repository and build the latest
available version, including the bugfix, yourself. More information 
about accessing the source trees is available at
    http://www.mysql.com/doc/en/Installing_source_tree.html

Additional info:

Documented fix in 5.1.8 changelog. Closed.