From: Date: November 8 2006 3:09pm Subject: bk commit into 5.1 tree (mskold:1.2318) BUG#23542 List-Archive: http://lists.mysql.com/commits/15020 X-Bug: 23542 Message-Id: <20061108140948.AC17D1E3742@linux.site> Below is the list of changes that have just been committed into a local 5.1 repository of marty. When marty 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@stripped, 2006-11-08 15:09:35+01:00, mskold@stripped +1 -0 bug#23542 crash on DELETE from ndb dd table: uses_blob_value always reads write_set, should check read_set if read operation sql/ha_ndbcluster.cc@stripped, 2006-11-08 15:09:12+01:00, mskold@stripped +1 -2 bug#23542 crash on DELETE from ndb dd table: uses_blob_value always reads write_set, should check read_set if read operation # 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: mskold # Host: linux.site # Root: /windows/Linux_space/MySQL/mysql-5.1-new-ndb --- 1.359/sql/ha_ndbcluster.cc 2006-11-08 15:09:48 +01:00 +++ 1.360/sql/ha_ndbcluster.cc 2006-11-08 15:09:48 +01:00 @@ -965,8 +965,7 @@ bool ha_ndbcluster::uses_blob_value() blob_index_end= blob_index + table_share->blob_fields; do { - if (bitmap_is_set(table->write_set, - table->field[*blob_index]->field_index)) + if (bitmap_is_set(bitmap, table->field[*blob_index]->field_index)) return TRUE; } while (++blob_index != blob_index_end); return FALSE;