Re: How to list ALL PostgreSQL functions?

Поиск
Список
Период
Сортировка
От hubert depesz lubaczewski
Тема Re: How to list ALL PostgreSQL functions?
Дата
Msg-id 20160912112224.r4343jfzxiznoqpi@depesz.com
обсуждение исходный текст
Ответ на Re: How to list ALL PostgreSQL functions?  (Poul Kristensen <bcc5226@gmail.com>)
Ответы Re: How to list ALL PostgreSQL functions?
Список pgsql-admin
On Mon, Sep 12, 2016 at 01:11:11PM +0200, Poul Kristensen wrote:
> Thanks a lot.for links :)
>
> btw:
>
> psql \df gives

\df gives you list of user functions. you can add more parameters, to
limit/extend the list.

like:

\df pg_*

will list all functions (including system one) that start with pg_

\dfS

will list all system functions

\df+ *xlog*

will list all functions (including system) that contain "xlog" in their
name, with some additional columns, which include "description" - one
line info about the function.

Best regards,

depesz



В списке pgsql-admin по дате отправления:

Предыдущее
От: Poul Kristensen
Дата:
Сообщение: Re: How to list ALL PostgreSQL functions?
Следующее
От: Tom Lane
Дата:
Сообщение: Re: How to list ALL PostgreSQL functions?