From: Date: June 10 2008 5:54pm Subject: bk commit into 6.0 tree (cpowers:1.2626) BUG#36468 List-Archive: http://lists.mysql.com/commits/47694 X-Bug: 36468 Message-Id: <20080610155456.73E931DB06C8@xeno.mysql.com> Below is the list of changes that have just been committed into a local 6.0 repository of cpowers. When cpowers 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, 2008-06-10 10:54:51-05:00, cpowers@stripped +1 -0 Bug#36468, "Falcon replication failure, engine reports HA_ERR_END_OF_FILE on slave" - Removed freeActiveBlobs() from StorageInterface::delete_rows(). Replication requires that blob data remain intact until DELETE operations are binlogged. storage/falcon/ha_falcon.cpp@stripped, 2008-06-10 10:54:49-05:00, cpowers@stripped +0 -3 Removed freeActiveBlobs() from StorageInterface::delete_rows(). Replication requires that blob data remain intact until DELETE operations are binlogged. diff -Nrup a/storage/falcon/ha_falcon.cpp b/storage/falcon/ha_falcon.cpp --- a/storage/falcon/ha_falcon.cpp 2008-04-09 05:02:56 -05:00 +++ b/storage/falcon/ha_falcon.cpp 2008-06-10 10:54:49 -05:00 @@ -1130,9 +1130,6 @@ int StorageInterface::delete_row(const u DBUG_ASSERT (lastRecord >= 0); ha_statistic_increment(&SSV::ha_delete_count); - if (activeBlobs) - freeActiveBlobs(); - int ret = storageTable->deleteRow(lastRecord); if (ret < 0)