PROBLEM WITH FUNCTIONS

From: "Mario Alberto Soto Cordones" <mario_soto(at)compuall(dot)cl>
To: <pgsql-sql(at)postgresql(dot)org>
Subject: PROBLEM WITH FUNCTIONS
Date: 2003-04-21 21:38:05
Message-ID: 1848.192.168.1.100.1050961085.squirrel@www.compuall.cl
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

Hi.

i have a problem with a function.

i create a type unidades
CREATE TYPE unidades AS (codigo numeric(3,0),
descripcion text);

and i create a function get_unidades
CREATE FUNCTION get_unidades(int4, int4, int4, int4) RETURNS typeof
unidades AS '
SELECT cucoduni, cudesuni
FROM cumauni
WHERE cuempuni = $1 and
cuseduni = $2 and
cucaruni = $3 and
cuasiuni= $4
; ' LANGUAGE 'sql';

and at this moment´s it´s all ok BUT when execute this function
select get_unidades(10,1,15,17)

say
"cannot display a value of type RECORD"

any idea, PLEASE HELP MY

saludos

Responses

Browse pgsql-sql by date

  From Date Subject
Next Message Randall Lucas 2003-04-21 21:46:36 Re: PROBLEM WITH FUNCTIONS
Previous Message Randall Lucas 2003-04-21 21:24:29 Re: functions problems