Re: ERROR: copyObject: don't know how to copy 611 - Mailing list pgsql-sql

From Tom Lane
Subject Re: ERROR: copyObject: don't know how to copy 611
Date
Msg-id 10863.975339198@sss.pgh.pa.us
Whole thread Raw
In response to ERROR: copyObject: don't know how to copy 611  ("Shane McEneaney" <shane@shadowbox.ie>)
List pgsql-sql
"Shane McEneaney" <shane@shadowbox.ie> writes:
> I get the error ERROR:  copyObject: don't know how to copy 611
> when I try to run the following procedure. The create table is causing
> the problem.

> CREATE FUNCTION "my_func" (int8) RETURNS int8 AS '
>  declare
>    v_my_var ALIAS FOR $1;
>  begin
>    create table my_table(my_id int);
>  end;
> ' LANGUAGE 'plpgsql';

> Can anybody explain this?

CREATE TABLE, like most other utility statements, isn't supported by
plpgsql at present.  This is fixed for 7.1 to the extent that you can
do examples like the above, but you still can't pass parameters to
the things --- for example CREATE TABLE $1 (foo int) won't work.

For these sorts of things you might want to consider pltcl or plperl,
which don't attempt to do any pre-parsing of SQL statements.  A little
slower, but much more flexible...
        regards, tom lane


pgsql-sql by date:

Previous
From: Hans-Jürgen Schönig
Date:
Subject: Bad performing DELETE
Next
From: Tom Lane
Date:
Subject: Re: Bad performing DELETE