1
0
mirror of https://github.com/MariaDB/server.git synced 2025-11-19 19:03:26 +03:00

MySQL Bugs: #16925: ndb, added additional getters on NdbDictionary::Event

This commit is contained in:
tomas@poseidon.ndb.mysql.com
2006-02-07 10:03:03 +01:00
parent 69b33265cf
commit 28e925454a
4 changed files with 45 additions and 0 deletions

View File

@@ -1143,6 +1143,12 @@ NdbEventImpl::addTableEvent(const NdbDictionary::Event::TableEvent t = NdbDicti
mi_type |= (unsigned)t;
}
bool
NdbEventImpl::getTableEvent(const NdbDictionary::Event::TableEvent t) const
{
return (mi_type & (unsigned)t) == (unsigned)t;
}
void
NdbEventImpl::setDurability(NdbDictionary::Event::EventDurability d)
{