Обсуждение: Bug #831: RFE - Schema list from psql

Поиск
Список
Период
Сортировка

Bug #831: RFE - Schema list from psql

От
pgsql-bugs@postgresql.org
Дата:
Dustin Sallings (dustin+pgsqlbugs@spy.net) reports a bug with a severity of 3
The lower the number the more severe it is.

Short Description
RFE - Schema list from psql

Long Description
psql should have a \d type builtin to list schemas in the current database.

Sample Code
select
        ns.nspname as Schema,
        u.usename as Owner,
        ns.nspacl as ACL
    from
        pg_namespace ns,
        pg_user u
    where
        u.usesysid = ns.nspowner
    order by
        ns.nspname


No file was uploaded with this report