From: Date: May 28 2008 5:49pm Subject: bk commit into 6.0 tree (cpowers:1.2685) BUG#36468 List-Archive: http://lists.mysql.com/commits/47159 X-Bug: 36468 Message-Id: <20080528154903.A665A1DB06FC@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-05-28 10:48:58-05:00, cpowers@stripped +1 -0 Bug#36468, Falcon replication failure, engine reports HA_ERR_END_OF_FILE on slave Replication requires that blob data remain intact until the DELETE operation is binlogged. Removed freeActiveBlobs() from StorageInterface::delete_rows(). storage/falcon/ha_falcon.cpp@stripped, 2008-05-28 10:48:55-05:00, cpowers@stripped +0 -3 Removed freeActiveBlobs() from StorageInterface::delete_rows(). diff -Nrup a/storage/falcon/ha_falcon.cpp b/storage/falcon/ha_falcon.cpp --- a/storage/falcon/ha_falcon.cpp 2008-05-21 09:58:02 -05:00 +++ b/storage/falcon/ha_falcon.cpp 2008-05-28 10:48:55 -05:00 @@ -1123,9 +1123,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)