List:Commits« Previous MessageNext Message »
From:Jim Starkey Date:June 29 2007 12:27am
Subject:bk commit into 6.0-falcon tree (jas:1.2575)
View as plain text  
Below is the list of changes that have just been committed into a local
6.0-falcon 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, 2007-06-28 18:27:10-04:00, jas@stripped +1 -0
  Fix new ASSERTION.

  storage/falcon/RecordVersion.cpp@stripped, 2007-06-28 18:27:06-04:00,
jas@stripped +1 -1
    Fix new ASSERTION.

# This is a BitKeeper patch.  What follows are the unified diffs for the
# set of deltas contained in the patch.  The rest of the patch, the part
# that BitKeeper cares about, is below these diffs.
# User:	jas
# Host:	fluffy.netfrastructure.com
# Root:	/home/mysql/mysql-5.1-falcon

--- 1.45/storage/falcon/RecordVersion.cpp	2007-06-28 18:27:19 -04:00
+++ 1.46/storage/falcon/RecordVersion.cpp	2007-06-28 18:27:19 -04:00
@@ -306,7 +306,7 @@
 		Log::debug("RecordVersion::thaw: writePending %d, was %d, recordFetched %d, data %p\n",
 					trans->writePending, wasWritePending, recordFetched, data.record);
 
-	ASSERT(bytesRestored > 0 && data.record == NULL);
+	ASSERT(bytesRestored > 0 || data.record == NULL);
 	state = recData;
 		
 	return bytesRestored;
Thread
bk commit into 6.0-falcon tree (jas:1.2575)Jim Starkey28 Jun