Re: [HACKERS] create function bug?

Поиск
Список
Период
Сортировка
От Tom
Тема Re: [HACKERS] create function bug?
Дата
Msg-id Pine.BSF.3.95q.980205134702.4000A-100000@misery.sdf.com
обсуждение исходный текст
Ответ на create function bug?  (Ewan Mellor <em@nexus.co.uk>)
Список pgsql-hackers
On Thu, 5 Feb 1998, Ewan Mellor wrote:

> test=> create function myfunc (integer) returns integer
> test-> as 'select $1' language 'sql';

  On most PLs that I used, you need to specify a variable name for the
param, after all, how are you going to refer to it?

  Try:

create function myfunc (myint integer) returns integer
as 'select $1' language 'sql';


Tom


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

Предыдущее
От: PostgreSQL
Дата:
Сообщение: Bug with char() type
Следующее
От: The Hermit Hacker
Дата:
Сообщение: Re: [HACKERS] PL code and fmgr_addr