Below is the list of changes that have just been committed into a local
6.0 repository of jas. When jas 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-04-07 12:04:51-04:00, jas@rowvwade. +1 -0
Fix problem with recovery of small blobs.
storage/falcon/SRLUpdateBlob.cpp@stripped, 2008-04-07 12:04:41-04:00, jas@rowvwade. +3 -1
Call Dbb:reInsertStuff when recovering small blobs.
diff -Nrup a/storage/falcon/SRLUpdateBlob.cpp b/storage/falcon/SRLUpdateBlob.cpp
--- a/storage/falcon/SRLUpdateBlob.cpp 2007-11-01 16:28:43 -04:00
+++ b/storage/falcon/SRLUpdateBlob.cpp 2008-04-07 12:04:41 -04:00
@@ -69,7 +69,9 @@ void SRLUpdateBlob::redo(void)
{
Stream stream;
stream.putSegment(length, (const char*) data, false);
- log->getDbb(tableSpaceId)->updateRecord(sectionId, recordNumber, &stream, transactionId, false);
+ Dbb *dbb = log->getDbb(tableSpaceId);
+ dbb->reInsertStub(sectionId, recordNumber, transactionId);
+ dbb->updateRecord(sectionId, recordNumber, &stream, transactionId, false);
}
}
| Thread |
|---|
| • bk commit into 6.0 tree (jas:1.2625) | U-ROWVWADEjas | 7 Apr |