pgLab/pglablib/PgNamespace.cpp
2018-01-08 20:45:52 +01:00

9 lines
180 B
C++

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