Re: Create table in functions - Mailing list pgsql-sql

From Jie Liang
Subject Re: Create table in functions
Date
Msg-id 39A40003.8F50A962@ipinc.com
Whole thread Raw
In response to Create table in functions  (Andreas Tille <tillea@rki.de>)
List pgsql-sql
Hi, there,

I don't think that you can use DDL in PL/pgSQL, normally say , you can
only use DML in PL/pgSQL.
i.e. you can use select into,update,delete,insert ... , but you cannot use
create, alter, grant ...


Andreas Tille wrote:

> Hello,
>
> I striped down my function up to a strange thing:
>
> web=# create function pHelpTable( )
> web-#   returns int
> web-#   As '
> web'#     Begin
> web'#       Create Table Temp_NumTable  ( Num int ) ;
> web'#
> web'#       return 17 ;
> web'#     End; '
> web-#   language 'plpgsql' ;
> CREATE
> web=#
> web=# select pHelpTable( );
> ERROR:  copyObject: don't know how to copy 611
> web=#
>
> What does this mean?  The ERROR is caused by the Create Table statement
> (when I removed it from my complex function it worked well).
> So why doesn't this work and what copy function fails here??
>
> Kind regards
>
>           Andreas.

--
Jie LIANG

Internet Products Inc.

10350 Science Center Drive
Suite 100, San Diego, CA 92121
Office:(858)320-4873

jliang@ipinc.com
www.ipinc.com





pgsql-sql by date:

Previous
From: Jan Wieck
Date:
Subject: Re: Using SETOF in plpgsql function
Next
From: drfrog@smartt.com
Date:
Subject: db benchmarks