Re: [SQL] plpgsql question

From: Michael Fuhr <mike(at)fuhr(dot)org>
To: Postgres Admin <postgres(at)productivitymedia(dot)com>
Cc: pgsql-sql(at)postgresql(dot)org, PostgreSQL - Admin <pgsql-admin(at)postgresql(dot)org>
Subject: Re: [SQL] plpgsql question
Date: 2005-08-31 02:32:49
Message-ID: 20050831023249.GA94269@winnie.fuhr.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-admin pgsql-sql

On Tue, Aug 30, 2005 at 01:59:04PM -0400, Postgres Admin wrote:
> ERROR: set-valued function called in context that cannot accept a set
> CONTEXT: PL/pgSQL function "article_sample" line 10 at return next

You don't show what you did to get this error, but I'd guess you
called the function like this:

SELECT article_display(10, 0); -- wrong

You should have called it like this:

SELECT * FROM article_display(10, 0);

The function as posted has a few other problems, like returning the
wrong type (you return a RECORD variable instead of an article_output
variable) and not selecting enough columns for the declared return
type. The return type also doesn't match the type shown in the
CREATE TYPE statement, and the CREATE TYPE statement fails with a
syntax error due to a missing comma. As I mentioned previously,
please post the *exact* code you're running so typographic errors
in the message don't distract from the real problem. Those typos
prevent people from loading the code into their own database so
they can test it unless they correct the mistakes, and then they
can't be sure they're running the same thing you are.

--
Michael Fuhr

In response to

Browse pgsql-admin by date

  From Date Subject
Next Message Ben Mitchell 2005-08-31 03:41:07 Backup / Restore help
Previous Message Marko Kreen 2005-08-31 00:59:51 Re: Location of pgpass.conf File

Browse pgsql-sql by date

  From Date Subject
Next Message Joost Kraaijeveld 2005-08-31 10:00:30 How do I copy part of table from db1 to db2 (and rename the columns)?
Previous Message andy rost 2005-08-30 20:10:21 Re: sqlstate 02000 while declaring cursor/freeing prepared