From: Date: June 10 2008 7:52pm Subject: commit into mysql-6.0-falcon:mysql-6.0-falcon branch (cpowers:2692) Bug#36468 List-Archive: http://lists.mysql.com/commits/47704 X-Bug: 36468 Message-Id: <20080610175235.80AE51DB06C8@xeno.mysql.com> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit #At bzr+ssh://bk-internal.mysql.com/bzrroot/server/mysql-6.0-falcon/ 2692 Christopher Powers 2008-06-10 Bug#36468, "Falcon replication failure" - Removed freeActiveBlobs() from StorageInterface::deleteRow(). Replication requires blob memory to remain intact until the DELETE event is binlogged. modified: storage/falcon/ha_falcon.cpp per-file comments: storage/falcon/ha_falcon.cpp Bug#36468. Removed freeActiveBlobs() from StorageInterface::deleteRow(). Replication requires blob memory to remain intact until the DELETE event is binlogged. === modified file 'storage/falcon/ha_falcon.cpp' --- a/storage/falcon/ha_falcon.cpp 2008-06-02 11:19:39 +0000 +++ b/storage/falcon/ha_falcon.cpp 2008-06-10 17:52:31 +0000 @@ -1124,9 +1124,6 @@ DBUG_ASSERT (lastRecord >= 0); ha_statistic_increment(&SSV::ha_delete_count); - if (activeBlobs) - freeActiveBlobs(); - int ret = storageTable->deleteRow(lastRecord); if (ret < 0)