You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
schemas(oid,_schema) as (select oid,nspname from pg_namespace where nspname not in ('pg_toast','pg_catalog','information_schema'))
, tables(_schema,_tbl,_fqtn,_rowestimate,_ncols) as (select s._schema,relname,quote_ident(s._schema)||'.'||quote_ident(relname::text),reltuples,relnatts from pg_class c join schemas s on c.relnamespace = s.oid where has_schema_privilege(relnamespace,'USAGE') and relkind='r')