Populate table sizes
This commit is contained in:
parent
39dbab4d36
commit
abc0dd892f
10 changed files with 47 additions and 62 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