added missing prototype implementations (bug #25933)

parent 14de2455
......@@ -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)
{
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment