The table inheritance works mostly
This commit is contained in:
parent
ccd88d0578
commit
2ff9577d41
22 changed files with 473 additions and 145 deletions
|
|
@ -25,21 +25,21 @@ namespace Pgsql {
|
|||
return *this;
|
||||
}
|
||||
|
||||
bool operator==(const ResultConstIterator &rhs)
|
||||
bool operator==(const ResultConstIterator &rhs) const
|
||||
{
|
||||
return m_row == rhs.m_row;
|
||||
}
|
||||
|
||||
bool operator!=(const ResultConstIterator &rhs)
|
||||
bool operator!=(const ResultConstIterator &rhs) const
|
||||
{
|
||||
return !operator==(rhs);
|
||||
}
|
||||
|
||||
const Row& operator*()
|
||||
const Row& operator*() const
|
||||
{
|
||||
return m_row;
|
||||
}
|
||||
const Row& operator->()
|
||||
const Row& operator->() const
|
||||
{
|
||||
return m_row;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue