Populate table sizes

This commit is contained in:
eelke 2023-01-22 16:46:14 +01:00
parent 39dbab4d36
commit abc0dd892f
10 changed files with 47 additions and 62 deletions

View file

@ -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;
}