From: | Alban Hertroys <dalroi(at)solfertje(dot)student(dot)utwente(dot)nl> |
---|---|
To: | rob(at)marjot-multisoft(dot)com |
Cc: | pgsql-general <pgsql-general(at)postgresql(dot)org> |
Subject: | Re: stored procedure: RETURNS record |
Date: | 2009-09-25 17:58:36 |
Message-ID: | 199365E4-EDC9-4176-BACB-DDC6EF782DDD@solfertje.student.utwente.nl |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-general |
On 25 Sep 2009, at 18:34, InterRob wrote:
> Unfortunately, this results in ONE row, with ONE column. E.g.:
>
> MYDB=# select * from (SELECT deserialize(kvp) FROM kvp) ss;
> deserialize
> -----------
> (1,2)
> (1 row)
>
> I guess I am seeking to prototype the anonymous row layout in the
> above SQL statement?
I'm not entirely sure about the syntax in your case, but I think
you're looking for:
MYDB=# select * from (SELECT deserialize(kvp) FROM kvp) ss (a int, b
int);
If that doesn't work, it's based on how you normally select from a
record-returning function, namely:
MYDB=# SELECT * FROM deserialize('some string') AS ss (a int, b int);
You may need to call it like this though:
MYDB=# select * from (SELECT (deserialize(kvp)).a, (deserialize
(kvp)).b FROM kvp) ss (a int, b int);
In that case your function better not be volatile or it will be
evaluated twice.
Alban Hertroys
--
If you can't see the forest for the trees,
cut the trees and you'll see there is no forest.
!DSPAM:737,4abd04ce11682030514312!
From | Date | Subject | |
---|---|---|---|
Next Message | Ron Mayer | 2009-09-25 18:01:02 | Re: generic modelling of data models; enforcing constraints dynamically... |
Previous Message | Sam Mason | 2009-09-25 17:38:58 | Re: [HACKERS] libpq port number handling |