Re: Where is the error - Mailing list pgsql-general

From Andreas Kretschmer
Subject Re: Where is the error
Date
Msg-id pub5a2-f64.ln1@kaufbach.delug.de
Whole thread Raw
In response to Where is the error  (Kaloyan Iliev Iliev <news1@faith.digsys.bg>)
List pgsql-general
begin  Kaloyan Iliev Iliev <news1@faith.digsys.bg> wrote:
> Hi
>  I have the following function:

> CREATE OR REPLACE FUNCTION "int" (boolean) RETURNS integer AS'

I'm not sure. But 'int' is reserved, possibly is this the error.

CREATE OR REPLACE FUNCTION my_int (boolean) RETURNS integer AS'
select CASE WHEN $1 THEN 1
ELSE 0
END
'LANGUAGE 'sql';

test_db=# select my_int('t'::bool);
 my_int
--------
      1
(1 Zeile)



end
Regards, Andreas
--
Diese Message wurde erstellt mit freundlicher Unterstützung eines freilau-
fenden Pinguins aus artgerechter Freilandhaltung.   Er ist garantiert frei
von Micro$oft'schen Viren. (#97922 http://counter.li.org)     GPG 7F4584DA
Was, Sie wissen nicht, wo Kaufbach ist? Hier: N 51.05082°, E 13.56889° ;-)

pgsql-general by date:

Previous
From: Kaloyan Iliev Iliev
Date:
Subject: Re: Where is the error
Next
From: Kaloyan Iliev Iliev
Date:
Subject: Re: Where is the error