mirror of
https://github.com/MariaDB/server.git
synced 2025-01-20 05:52:27 +01:00
added missing prototype implementations (bug #25933)
This commit is contained in:
parent
fd6aa55ba5
commit
d9cf47f925
1 changed files with 12 additions and 0 deletions
|
@ -368,12 +368,24 @@ NdbOperation::subValue( const char* anAttrName, Uint32 aValue)
|
||||||
return subValue(m_currentTable->getColumn(anAttrName), aValue);
|
return subValue(m_currentTable->getColumn(anAttrName), aValue);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
int
|
||||||
|
NdbOperation::subValue( const char* anAttrName, Uint64 aValue)
|
||||||
|
{
|
||||||
|
return subValue(m_currentTable->getColumn(anAttrName), aValue);
|
||||||
|
}
|
||||||
|
|
||||||
int
|
int
|
||||||
NdbOperation::subValue(Uint32 anAttrId, Uint32 aValue)
|
NdbOperation::subValue(Uint32 anAttrId, Uint32 aValue)
|
||||||
{
|
{
|
||||||
return subValue(m_currentTable->getColumn(anAttrId), aValue);
|
return subValue(m_currentTable->getColumn(anAttrId), aValue);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
int
|
||||||
|
NdbOperation::subValue(Uint32 anAttrId, Uint64 aValue)
|
||||||
|
{
|
||||||
|
return subValue(m_currentTable->getColumn(anAttrId), aValue);
|
||||||
|
}
|
||||||
|
|
||||||
int
|
int
|
||||||
NdbOperation::read_attr(const char* anAttrName, Uint32 RegDest)
|
NdbOperation::read_attr(const char* anAttrName, Uint32 RegDest)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue