2017-08-23 13:27:23 +02:00
|
|
|
|
#include "PgNamespace.h"
|
2017-02-01 18:01:02 +01:00
|
|
|
|
|
|
|
|
|
|
PgNamespace::PgNamespace() = default;
|
|
|
|
|
|
|
2017-12-12 20:13:53 +01:00
|
|
|
|
bool PgNamespace::isSystemCatalog() const
|
|
|
|
|
|
{
|
|
|
|
|
|
return name == "pg_catalog"
|
2017-12-29 08:37:24 +01:00
|
|
|
|
|| name == "pg_toast"
|
|
|
|
|
|
|| name == "pg_temp_1"
|
|
|
|
|
|
|| name == "pg_toast_temp_1"
|
|
|
|
|
|
|| name == "information_schema";
|
2017-12-12 20:13:53 +01:00
|
|
|
|
}
|