Moved several files from pglab project to pglablib
This commit is contained in:
parent
206d734ff5
commit
f4538069cb
44 changed files with 45 additions and 44 deletions
12
pglablib/PgNamespace.cpp
Normal file
12
pglablib/PgNamespace.cpp
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
#include "PgNamespace.h"
|
||||
|
||||
PgNamespace::PgNamespace() = default;
|
||||
|
||||
bool PgNamespace::isSystemCatalog() const
|
||||
{
|
||||
return name == "pg_catalog"
|
||||
|| name == "pg_toast"
|
||||
|| name == "pg_temp_1"
|
||||
|| name == "pg_toast_temp_1"
|
||||
|| name == "information_schema";
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue