List:Internals« Previous MessageNext Message »
From:jonas Date:September 27 2005 9:47pm
Subject:bk commit into 5.1 tree (jonas:1.2026)
View as plain text  
Below is the list of changes that have just been committed into a local
5.1 repository of jonas. When jonas 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.2026 05/09/27 21:47:13 jonas@stripped +2 -0
  ndb diskdata
    fix compile problem in new counting containers

  storage/ndb/src/kernel/vm/DLCHashTable.hpp
    1.2 05/09/27 21:47:10 jonas@stripped +1 -1
    fix compile problem

  storage/ndb/src/kernel/vm/DLCFifoList.hpp
    1.2 05/09/27 21:47:10 jonas@stripped +1 -1
    fix compile problem

# 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:	jonas
# Host:	perch.ndb.mysql.com
# Root:	/home/jonas/src/mysql-5.1-ndb-dd

--- 1.1/storage/ndb/src/kernel/vm/DLCFifoList.hpp	2005-09-27 14:37:36 +02:00
+++ 1.2/storage/ndb/src/kernel/vm/DLCFifoList.hpp	2005-09-27 21:47:10 +02:00
@@ -82,7 +82,7 @@
   }
 
   DLCFifoList<T>& operator=(const DLCFifoList<T>& src){
-    assert(&thePool == &src.thePool);
+    assert(&this->thePool == &src.thePool);
     this->head = src.head;
     return * this;
   }

--- 1.1/storage/ndb/src/kernel/vm/DLCHashTable.hpp	2005-09-27 14:37:37 +02:00
+++ 1.2/storage/ndb/src/kernel/vm/DLCHashTable.hpp	2005-09-27 21:47:10 +02:00
@@ -56,7 +56,7 @@
   }
 
   void removeAll() {
-    DLHashTable<T, U>::removeAll(ptr);
+    DLHashTable<T, U>::removeAll();
     m_count = 0;
   }
   
Thread
bk commit into 5.1 tree (jonas:1.2026)jonas27 Sep