pg_catalog
In order to be Postgres-compatible, GlareDB implements a large portion of the Postgres catalog. While we are not yet fully-compatible, (see: Technical Preview), GlareDB operates with psql
and popular BI Tools.
Viewing pg_catalog
tables
select table_name
from information_schema.tables
where table_schema = 'pg_catalog';
table_name
----------------
pg_attribute
pg_description
pg_namespace
pg_table
pg_am
pg_views
pg_class
pg_database
(8 rows)