List:Commits« Previous MessageNext Message »
From:Christopher Powers Date:June 10 2008 5:52pm
Subject:commit into mysql-6.0-falcon:mysql-6.0-falcon branch (cpowers:2692) Bug#36468
View as plain text  
#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)

Thread
commit into mysql-6.0-falcon:mysql-6.0-falcon branch (cpowers:2692) Bug#36468Christopher Powers10 Jun