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@stripped, 2007-06-11 17:50:39+02:00, tomas@stripped +2 -0
make function static
storage/ndb/src/ndbapi/NdbEventOperationImpl.cpp@stripped, 2007-06-11 17:50:36+02:00,
tomas@stripped +1 -1
make function static
storage/ndb/src/ndbapi/ndb_internal.hpp@stripped, 2007-06-11 17:50:36+02:00,
tomas@stripped +1 -1
make function static
# 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: whalegate.ndb.mysql.com
# Root: /home/tomas/mysql-5.1-new-ndb
--- 1.88/storage/ndb/src/ndbapi/NdbEventOperationImpl.cpp 2007-06-11 17:19:18 +02:00
+++ 1.89/storage/ndb/src/ndbapi/NdbEventOperationImpl.cpp 2007-06-11 17:50:36 +02:00
@@ -2839,7 +2839,7 @@
data[5]= apply_gci >> 32;
data[6]= latest_gci & ~(Uint32)0;
data[7]= latest_gci >> 32;
- Ndb_internal().send_event_report(m_ndb, data,8);
+ Ndb_internal::send_event_report(m_ndb, data,8);
#ifdef VM_TRACE
assert(m_total_alloc >= m_free_data_sz);
#endif
--- 1.2/storage/ndb/src/ndbapi/ndb_internal.hpp 2007-06-11 17:28:50 +02:00
+++ 1.3/storage/ndb/src/ndbapi/ndb_internal.hpp 2007-06-11 17:50:36 +02:00
@@ -21,6 +21,6 @@
friend class NdbEventBuffer;
Ndb_internal() {}
virtual ~Ndb_internal() {}
- int send_event_report(Ndb *ndb, Uint32 *data, Uint32 length)
+ static int send_event_report(Ndb *ndb, Uint32 *data, Uint32 length)
{ return ndb->theImpl->send_event_report(data, length); }
};
| Thread |
|---|
| • bk commit into 5.1 tree (tomas:1.2532) | tomas | 11 Jun |