Re: Function not running after upgrade 7.03 to 7.2 - Mailing list pgsql-sql

From Christopher Kings-Lynne
Subject Re: Function not running after upgrade 7.03 to 7.2
Date
Msg-id GNELIHDDFBOCMGBFGEFOMEMECCAA.chriskl@familyhealth.com.au
Whole thread Raw
In response to Function not running after upgrade 7.03 to 7.2  (juerg.rietmann@pup.ch)
List pgsql-sql
> Query :
>
> SELECT *,
> (SELECT rtrim(buildUmfang(zylinder.z_typ), ','::text) AS rtrim) AS umfang
> FROM zylinder;
>
> Thank's in advance for any help .... jr

Try this:

SELECT *,
(SELECT rtrim("buildUmfang"(zylinder.z_typ), ','::text) AS rtrim) AS umfang
FROM zylinder;

I think it's because you have an upper case letter in the name - you might
need to quote it.

Chris



pgsql-sql by date:

Previous
From: juerg.rietmann@pup.ch
Date:
Subject: Function not running after upgrade 7.03 to 7.2
Next
From: Wei Weng
Date:
Subject: ON DELETE CASCADE question