Added recognition of a few more system catalogs.
This commit is contained in:
parent
3a425ab7c1
commit
4e1120647c
1 changed files with 4 additions and 1 deletions
|
|
@ -5,5 +5,8 @@ PgNamespace::PgNamespace() = default;
|
||||||
bool PgNamespace::isSystemCatalog() const
|
bool PgNamespace::isSystemCatalog() const
|
||||||
{
|
{
|
||||||
return name == "pg_catalog"
|
return name == "pg_catalog"
|
||||||
|
|| name == "pg_toast"
|
||||||
|
|| name == "pg_temp_1"
|
||||||
|
|| name == "pg_toast_temp_1"
|
||||||
|| name == "information_schema";
|
|| name == "information_schema";
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue