Re: proposal: auxiliary functions for record type - Mailing list pgsql-hackers

From Jim Nasby
Subject Re: proposal: auxiliary functions for record type
Date
Msg-id EB5FC047-9B41-4316-90C2-387E36DD4C3D@nasby.net
Whole thread Raw
In response to Re: proposal: auxiliary functions for record type  (Florian Pflug <fgp@phlo.org>)
List pgsql-hackers
On Dec 11, 2010, at 9:24 AM, Florian Pflug wrote:
> begin
>     for v_field in select * from fieldinfos(myrec) loop
>         case
>             when v_field.fieldtype = 'type1'::regtype then
>                 v_value_type1 := fieldvalue(myrec, NULL::type1, false);
>                 <Do something with v_value_type1>
>             ...
>             when v_field.fieldtype = 'typeN'::regtype then
>                 v_value_typeN := fieldvalue(myrec, NULL::typeN, false);
>                 <Do something with v_value_typeN>
>             else raise exception 'Unexpected type % in record %', v_field.fieldtype, myrec;
>         end case;
>     end loop;
> end;

All that casting looks horribly painful. :(

This is a case where what we really need is a data type that can accept data of any type and tell you what the type
actuallyis. Another place that could really use that are crosstabs, though that case is more complex in that you're
dealingwith a recordset of fields and you don't know the type of any of them. 

I wonder if it would be possible to create such a type without major backend surgery... I'm thinking the type would
havea structure that stores the OID of the original type and then stores the text representation of that type. CAST
functionsto this type would know what the input data was and could store that information. The challenge is creating a
wayto cast back to the original type... I don't see a way to do that with current infrastructure. 
--
Jim C. Nasby, Database Architect                   jim@nasby.net
512.569.9461 (cell)                         http://jim.nasby.net




pgsql-hackers by date:

Previous
From: tv@fuzzy.cz
Date:
Subject: Re: keeping a timestamp of the last stats reset (for a db, table and function)
Next
From: Pavel Stehule
Date:
Subject: Re: proposal: auxiliary functions for record type