9 lines
179 B
C++
9 lines
179 B
C++
#include "PgNamespace.h"
|
|
|
|
PgNamespace::PgNamespace() = default;
|
|
|
|
bool PgNamespace::isSystemCatalog() const
|
|
{
|
|
return name == "pg_catalog"
|
|
|| name == "information_schema";
|
|
}
|