List:Commits« Previous MessageNext Message »
From:'Hartmut Holzgraefe' Date:March 15 2007 1:35pm
Subject:bk commit into 5.1 tree (hartmut:1.2488) BUG#25933
View as plain text  
Below is the list of changes that have just been committed into a local
5.1 repository of hartmut. When hartmut 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-15 13:35:49+01:00, hartmut@stripped +1 -0
  added missing prototype implementations (bug #25933)

  storage/ndb/src/ndbapi/NdbOperation.cpp@stripped, 2007-03-15 13:35:47+01:00,
hartmut@stripped +12 -0
    added missing prototype implementations (bug #25933)

# 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:	hartmut
# Host:	hartmut-desktop.buero.foebud.org
# Root:	/home/hartmut/projects/mysql/dev/bug-trees/mysql-5.1-bug25933

--- 1.20/storage/ndb/src/ndbapi/NdbOperation.cpp	2007-03-15 13:35:55 +01:00
+++ 1.21/storage/ndb/src/ndbapi/NdbOperation.cpp	2007-03-15 13:35:55 +01:00
@@ -369,7 +369,19 @@
 }
 
 int
+NdbOperation::subValue( const char* anAttrName, Uint64 aValue)
+{
+  return subValue(m_currentTable->getColumn(anAttrName), aValue);
+}
+
+int
 NdbOperation::subValue(Uint32 anAttrId, Uint32 aValue)
+{
+  return subValue(m_currentTable->getColumn(anAttrId), aValue);
+}
+
+int
+NdbOperation::subValue(Uint32 anAttrId, Uint64 aValue)
 {
   return subValue(m_currentTable->getColumn(anAttrId), aValue);
 }
Thread
bk commit into 5.1 tree (hartmut:1.2488) BUG#25933'Hartmut Holzgraefe'15 Mar