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

From: Zlatko Matić <zlatko(dot)matic1(at)sb(dot)t-com(dot)hr>
To: "Pavel Stehule" <pavel(dot)stehule(at)gmail(dot)com>
Cc: <pgsql-general(at)postgresql(dot)org>
Subject: Re: ERROR: a column definition list is required for functions returning "record"
Date: 2007-07-17 17:16:11
Message-ID: 003001c7c896$30085310$7bae0fd4@zlatkovyfkpgz6
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

OK. Thanks.
Regards,

Zlatko

----- Original Message -----
From: "Pavel Stehule" <pavel(dot)stehule(at)gmail(dot)com>
To: "Zlatko Matić" <zlatko(dot)matic1(at)sb(dot)t-com(dot)hr>
Cc: <pgsql-general(at)postgresql(dot)org>
Sent: Tuesday, July 17, 2007 12:14 PM
Subject: Re: [GENERAL] ERROR: a column definition list is required for
functions returning "record"

> 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(dot)matic1(at)sb(dot)t-com(dot)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
>>
>
> ---------------------------(end of broadcast)---------------------------
> TIP 4: Have you searched our list archives?
>
> http://archives.postgresql.org/
>

In response to

Browse pgsql-general by date

  From Date Subject
Next Message PFC 2007-07-17 17:42:37 Re: yet another image: db or filesystem ? question
Previous Message marcelo Cortez 2007-07-17 17:01:56 help with tsearch2 stem compile