Re: ERROR: a column definition list is required for functions returning "record"

Поиск
Список
Период
Сортировка
От Pavel Stehule
Тема Re: ERROR: a column definition list is required for functions returning "record"
Дата
Msg-id 162867790707170314w37bf7dfcn5f8e65d32b2afe75@mail.gmail.com
обсуждение исходный текст
Ответ на ERROR: a column definition list is required for functions returning "record"  (Zlatko Matić <zlatko.matic1@sb.t-com.hr>)
Список pgsql-general
Hello

you have to specify column names and column types. Like


postgres=# create or replace function foog() returns setof record as $$
declare r record; begin r := row(10,20); return next r ; return; end;
$$ language plpgsql;

postgres=# select * from foog() t(a int, b int);  a  | b
----+----
 10 | 20
(1 row)

Regards
Pavel Stehule

2007/7/17, Zlatko Matić <zlatko.matic1@sb.t-com.hr>:
>
>
> I have a plpgsql function that returns dataset.
> First it was defined to return SETOF someview.
> Then I changed it to return SETOF RECORD, in order to be able to return
> dataset with varying number of columns.
> But, I get the following error:"ERROR: a column definition list is required
> for functions returning "record" SQL state: 42601".
> What does it mean? What is "columns definition list"?
>
> Thanks,
>
> Zlatko
>

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

Предыдущее
От: Zlatko Matić
Дата:
Сообщение: ERROR: a column definition list is required for functions returning "record"
Следующее
От: Gregory Stark
Дата:
Сообщение: Re: interaction with postgres defined types in custom c functions