Bezig met crudmodel/tab

This commit is contained in:
eelke 2018-01-08 20:45:52 +01:00
parent ee321b3fb1
commit 14ab400ccb
15 changed files with 308 additions and 33 deletions

View file

@ -4,9 +4,6 @@ PgNamespace::PgNamespace() = default;
bool PgNamespace::isSystemCatalog() const
{
return name == "pg_catalog"
|| name == "pg_toast"
|| name == "pg_temp_1"
|| name == "pg_toast_temp_1"
return name.startsWith("pg_")
|| name == "information_schema";
}