pgLab/pglab/PgNamespace.cpp
eelke e9d72d391d PgAttribute loading + ColummnTableModel
Required enchancement to PgContainer to make multifield key work.
2017-12-12 20:13:53 +01:00

9 lines
179 B
C++

#include "PgNamespace.h"
PgNamespace::PgNamespace() = default;
bool PgNamespace::isSystemCatalog() const
{
return name == "pg_catalog"
|| name == "information_schema";
}