8 lines
161 B
C++
8 lines
161 B
C++
#include "PgNamespace.h"
|
|
|
|
bool PgNamespace::isSystemCatalog() const
|
|
{
|
|
auto&& n = objectName();
|
|
return n.startsWith("pg_")
|
|
|| n == "information_schema";
|
|
}
|