List:Commits« Previous MessageNext Message »
From:mikael Date:March 5 2007 6:18pm
Subject:bk commit into 5.1 tree (mikron:1.2437)
View as plain text  
Below is the list of changes that have just been committed into a local
5.1 repository of mikron. When mikron 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-03-05 19:18:42+01:00, mikron@stripped +2 -0
  Printout buffer for events too short
  Needed zeroing of lock events

  storage/ndb/include/debugger/EventLogger.hpp@stripped, 2007-03-05 19:18:37+01:00, mikron@stripped +1 -1
    Printout buffer for events too short
    Needed zeroing of lock events

  storage/ndb/src/kernel/blocks/dbacc/DbaccMain.cpp@stripped, 2007-03-05 19:18:38+01:00, mikron@stripped +1 -0
    Printout buffer for events too short
    Needed zeroing of lock events

# 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:	mikron
# Host:	25.37.251.10.in-addr.arpa
# Root:	/Users/mikron/mysql_clones/latest_wl3682

--- 1.14/storage/ndb/include/debugger/EventLogger.hpp	2007-01-06 01:21:20 +01:00
+++ 1.15/storage/ndb/include/debugger/EventLogger.hpp	2007-03-05 19:18:37 +01:00
@@ -171,7 +171,7 @@
 
   Uint32 m_filterLevel;
 
-  STATIC_CONST(MAX_TEXT_LENGTH = 256);
+  STATIC_CONST(MAX_TEXT_LENGTH = 512);
 };
 
 

--- 1.82/storage/ndb/src/kernel/blocks/dbacc/DbaccMain.cpp	2007-02-28 14:31:27 +01:00
+++ 1.83/storage/ndb/src/kernel/blocks/dbacc/DbaccMain.cpp	2007-03-05 19:18:38 +01:00
@@ -8605,6 +8605,7 @@
   {
     tot_count += c_no_lock_waits[i];
     signal->theData[i+1] = c_no_lock_waits[i];
+    c_no_lock_waits[i] = 0;
   }
   signal->theData[17] = tot_count;
   sendSignal(CMVMI_REF, GSN_EVENT_REP, signal, 18, JBB);
Thread
bk commit into 5.1 tree (mikron:1.2437)mikael5 Mar