Tom Lane writes:
> Roger Mason <rmason(at)mun(dot)ca> writes:
> You selected zero columns (which psql is not very good at displaying :-().
> Try
>
> select * into info_table from (select get_info('1043_1')) as info_split;
>
> BTW, that could be simplified a lot:
>
> select * into info_table from get_info('1043_1');
Embarassed cough :-).
And thanks for the simplification.
Roger