Re: Why pgsql function is working on vers 8.0/windows and not on ver 7.3.2/rad hat?

From: Michael Fuhr <mike(at)fuhr(dot)org>
To: "in-consulting(dot)net" <otto(at)in-consulting(dot)net>
Cc: pgsql-general(at)postgresql(dot)org
Subject: Re: Why pgsql function is working on vers 8.0/windows and not on ver 7.3.2/rad hat?
Date: 2005-08-05 14:17:05
Message-ID: 20050805141705.GA97970@winnie.fuhr.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

On Tue, Aug 02, 2005 at 01:52:41PM +0300, in-consulting.net wrote:
> I'm using a type defined by me: output_mt, on the function
> CREATE OR REPLACE FUNCTION happy()
> RETURNS SETOF output_mt AS....
> and when I want to initialize from another function:
> CREATE OR REPLACE FUNCTION msg()
> RETURNS output_mt AS....
> as: output_mt=msg();
> it gaves me:
> WARNING: plpgsql: ERROR during compile of happy near line xx
> ERROR: parse error at or near "output_mt".
> Why is this working on version 8.0 with windows and not on version 7.3.2 on linux, how can I solve this problem, do I need a cast or something ?

Could we see a complete example? It would be easier to say what
the problem is if we could see the actual code and an unedited error
message.

Is output_mt a composite type? 8.0 does have better support for
composite types than previous versions; it also has better syntax
checking for PL/pgSQL functions.

--
Michael Fuhr

In response to

Browse pgsql-general by date

  From Date Subject
Next Message Lowell.Hought 2005-08-05 14:21:49 Re: DNS vs /etc/hosts
Previous Message Bricklen Anderson 2005-08-05 14:10:16 Re: How to write jobs in postgresql