Re: inferred param types for PREPARE

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: inferred param types for PREPARE
Дата
Msg-id 17943.1137364386@sss.pgh.pa.us
обсуждение исходный текст
Ответ на Re: inferred param types for PREPARE  (Neil Conway <neilc@samurai.com>)
Ответы Re: inferred param types for PREPARE
Список pgsql-patches
Neil Conway <neilc@samurai.com> writes:
> Woops, good point. Attached is a revised patch that doesn't modify the
> grammar, and includes updates to the documentation and regression tests.

BTW, I wonder whether it wouldn't be a better idea to declare the
pg_prepared_statement view's parameter_types column as regtype[]
instead of oid[].  This would make the default output much more
readable, ie you'd get things like '{integer,boolean}' instead of
'{23,16}'.  Of course you can cast in either direction to get the
other form, but defaulting to text instead of numeric output seems
like it might be a better choice.

The option of casting to get the other form should probably be mentioned
in the view's documentation page, whichever is the default.

            regards, tom lane

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

Предыдущее
От: Neil Conway
Дата:
Сообщение: Re: inferred param types for PREPARE
Следующее
От: Neil Conway
Дата:
Сообщение: Re: patch to create system view that lists cursors