List:Internals« Previous MessageNext Message »
From:tomas Date:May 5 2005 2:00pm
Subject:bk commit into 5.1 tree (tomas:1.1821)
View as plain text  
Below is the list of changes that have just been committed into a local
5.1 repository of tomas. When tomas 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
  1.1821 05/05/05 16:00:35 tomas@stripped +1 -0
  bugfix for opt compile

  storage/ndb/src/ndbapi/NdbEventOperationImpl.cpp
    1.44 05/05/05 16:00:31 tomas@stripped +4 -4
    bugfix for opt compile

# 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:	tomas
# Host:	poseidon.ndb.mysql.com
# Root:	/home/tomas/wl2325-opt

--- 1.43/storage/ndb/src/ndbapi/NdbEventOperationImpl.cpp	2005-04-28 16:42:06 +02:00
+++ 1.44/storage/ndb/src/ndbapi/NdbEventOperationImpl.cpp	2005-05-05 16:00:31 +02:00
@@ -380,10 +380,10 @@
 	unsigned tDataSz= AttributeHeader(*aAttrPtr).getDataSize();
 	assert(tAttr->attrId() ==
 	       AttributeHeader(*aAttrPtr).getAttributeId());
-	assert(tAttr->receive_data(aDataPtr, tDataSz));
+	tAttr->receive_data(aDataPtr, tDataSz);
 	if (is_update)
 	{
-	  assert(tAttr1->receive_data(aDataPtr, tDataSz));
+	  tAttr1->receive_data(aDataPtr, tDataSz);
 	  tAttr1= tAttr1->next();
 	}
         // next
@@ -420,7 +420,7 @@
 		
 	DBUG_PRINT("info",("set [%u] %u 0x%x [%u] 0x%x", tAttrId, tDataSz, *aDataPtr, tRecAttrId, aDataPtr));
       
-	assert(tWorkingRecAttr->receive_data(aDataPtr, tDataSz));
+	tWorkingRecAttr->receive_data(aDataPtr, tDataSz);
  	tWorkingRecAttr = tWorkingRecAttr->next();
       }
       aAttrPtr++;
@@ -455,7 +455,7 @@
 	assert(!m_eventImpl->m_tableImpl->getColumn(tRecAttrId)->getPrimaryKey());
 	hasSomeData++;
 	
-	assert(tWorkingRecAttr->receive_data(aDataPtr, tDataSz));
+	tWorkingRecAttr->receive_data(aDataPtr, tDataSz);
 	tWorkingRecAttr = tWorkingRecAttr->next();
       }
       aDataPtr += tDataSz;
Thread
bk commit into 5.1 tree (tomas:1.1821)tomas5 May