Query function arg data types ONLY (no arg names)

Поиск
Список
Период
Сортировка
От Jeremy Finzel
Тема Query function arg data types ONLY (no arg names)
Дата
Msg-id CAMa1XUjFrseK4OAo7sniOPH8ZNMXQ99da6b2U6QyVwxM5dL5nw@mail.gmail.com
обсуждение исходный текст
Ответы Re: Query function arg data types ONLY (no arg names)  (Pavel Stehule <pavel.stehule@gmail.com>)
Re: Query function arg data types ONLY (no arg names)  (Tom Lane <tgl@sss.pgh.pa.us>)
Список pgsql-general
It appears that neither pg_get_function_arguments nor pg_get_function_identity_arguments could be used for this.  I want to get function argument data types from the catalog by ordinal position, without the argument name.

For example, I want the same information for these 2 functions:

foo(p_1 int, p_2 text)

- {int, text}

foo(int, text)

- {int, text}

Any suggestions as to how to use the catalogs or built-in postgres functions to query this?

Thank you!
Jeremy

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

Предыдущее
От: Steven Lembark
Дата:
Сообщение: Re: Rationale for aversion to the central database?
Следующее
От: Pavel Stehule
Дата:
Сообщение: Re: Query function arg data types ONLY (no arg names)