PostgreSQL:浏览 pgAdmin 中的内置模式 UI

PostgreSQL: Browsing built-in schemas in pgAdmin UI

PostgreSQL 带有以下内置模式

postgres=# select catalog_name, schema_name, schema_owner
postgres-# from information_schema.schemata
postgres-# order by schema_name;
 catalog_name |    schema_name     | schema_owner
--------------+--------------------+--------------
 postgres     | information_schema | postgres
 postgres     | pg_catalog         | postgres
 postgres     | pg_toast           | postgres
 postgres     | public             | postgres
(4 rows)

EDB Postgres Advanced Server 还有 4 个

postgres=# select catalog_name, schema_name, schema_owner
postgres-# from information_schema.schemata
postgres-# order by schema_name;
 catalog_name |    schema_name     | schema_owner
--------------+--------------------+--------------
 postgres     | information_schema | enterprisedb
 postgres     | pg_catalog         | enterprisedb
 postgres     | pg_temp_1          | enterprisedb
 postgres     | pg_toast           | enterprisedb
 postgres     | pg_toast_temp_1    | enterprisedb
 postgres     | public             | enterprisedb
 postgres     | sys                | enterprisedb
(7 rows)

我尤其对 information_schemasys 模式感兴趣,但它们在对象浏览器中不可见。

我认为这可能是权限问题、连接设置问题或其他问题...

有什么方法可以使这些模式与相应的对象一起在对象浏览器中可见吗?

它们在 catalogs 部分下