Re: Number of parameters in a sql function

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: Number of parameters in a sql function
Дата
Msg-id 4179.920740849@sss.pgh.pa.us
обсуждение исходный текст
Ответы Re: [HACKERS] Re: Number of parameters in a sql function  (Bruce Momjian <maillist@candle.pha.pa.us>)
Список pgsql-hackers
"Stan Ng" <stan@squaresoft.com> writes:
> I'm running into a limit problem with CREATE FUNCTION. Whenever I exceed
> the limit on parameters, somewhere around 12 for me, psql bombs on me
> with the "pqReadData() -- backend closed the channel unexpectedly" error
> message.  Is there any way to increase the parameter limit for
> functions?

It shouldn't be letting you get that high; the system limit is 8
parameters for a function.  (It looks to me like parse_func.c should
be, but is failing to, verify that the length of the parameter lists
it is passed are within bounds --- or else gram.y itself should complain
if the list is overlength.)

Increasing the limit would be rather a major project I suspect.
A quick look around the sources found a lot of dependencies, some
being symbolic constants (not all the same one :-() and some being
hard coded "8"s.  Ick.  Also, you would certainly be facing an initdb
and database reload, because the number of argument-type columns in
pg_proc would have to increase.

It'd be good to clean this up and replace pg_proc's fixed-size
proargtypes column with a variable-size "array of oid" column.
Any volunteers?

            regards, tom lane

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

Предыдущее
От: Tom Lane
Дата:
Сообщение: Re: [HACKERS] Why is that so slow?
Следующее
От: The Hermit Hacker
Дата:
Сообщение: a "bug" in v6.4.3 ...