Commit 1c640642 authored by unknown's avatar unknown
Browse files

Merge hholzgraefe@bk-internal.mysql.com:/home/bk/mysql-5.1-ndb

into  mysql.com:/home/hartmut/projects/mysql/dev/bug-trees/mysql-5.1-bug25933

parents e61883c9 d9cf47f9
Loading
Loading
Loading
Loading
+12 −0
Original line number Diff line number Diff line
@@ -368,12 +368,24 @@ NdbOperation::subValue( const char* anAttrName, Uint32 aValue)
  return subValue(m_currentTable->getColumn(anAttrName), aValue);
}

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);
}

int
NdbOperation::read_attr(const char* anAttrName, Uint32 RegDest)
{