(SETOF) RECORD AS complex_type - Mailing list pgsql-hackers

From David Fetter
Subject (SETOF) RECORD AS complex_type
Date
Msg-id 20061227220638.GD22284@fetter.org
Whole thread Raw
Responses Re: (SETOF) RECORD AS complex_type
Re: (SETOF) RECORD AS complex_type
List pgsql-hackers
Folks,

While using DBI-Link, I've noticed a little lacuna in how functions
returning (SETOF) RECORD work, namely, that you have to cast them to
explicit lists of columns, even when that list of columns corresponds
to an existing complex type.

What would be involved in fixing the casting operation so that the
following would work?

CREATE TYPE foo AS (   a INT4,   b INT8,   c POINT,   d TEXT
);

CREATE FUNCTION bar(output_type TEXT)
RETURNS SETOF RECORD
...

SELECT * FROM bar('foo') AS foo;

Cheers,
D
-- 
David Fetter <david@fetter.org> http://fetter.org/
phone: +1 415 235 3778        AIM: dfetter666                             Skype: davidfetter

Remember to vote!


pgsql-hackers by date:

Previous
From: Stephen Frost
Date:
Subject: Re: pg_hba.conf hostname todo
Next
From: Bruce Momjian
Date:
Subject: Re: Per-database search_path