[8.1] "drop table" in plpgsql function

From: Sergey Karin <sergey(dot)karin(at)gmail(dot)com>
To: pgsql-general(at)postgresql(dot)org
Subject: [8.1] "drop table" in plpgsql function
Date: 2005-11-14 07:03:33
Message-ID: b78883bf0511132303n5a0ec436g@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

---------- Forwarded message ----------
From: Sergey Karin <sergey(dot)karin(at)gmail(dot)com>
Date: 11.11.2005 13:59
Subject: [8.1] "drop table" in plpgsql function
To: pgsql-general(at)postgresql(dot)org

hi all!

I have found a strange error.

panorama2=# select version();
version
------------------------------------------------------------------------
PostgreSQL 8.1.0 on i686-pc-linux-gnu, compiled by GCC gcc (GCC) 3.2.3
(1 row)

I have next function in file ./f_safe_drop_table.sql:
------------------------------
create or replace function f_safe_drop_table(varchar) returns bool as'
declare
table_name alias for $1;
tcount int4;
begin
select f_is_table_exist(table_name) into tcount;
if(tcount > 0) then
drop table table_name;
return true;
end if;
return false;
end
'language 'plpgsql';
======================

when I create my function in psql, I have next error:
-----------------------
panorama2=# \i ./f_safe_drop_table.sql
psql:./f_safe_drop_table.sql:29: ERROR: syntax error at or near "$1"
at character 13
QUERY: drop table $1
CONTEXT: SQL statement in PL/PgSQL function "f_safe_drop_table" near line 10
psql:./Functions/Misc/f_safe_drop_table.sql:29: LINE 1: drop table $1
psql:./Functions/Misc/f_safe_drop_table.sql:29: ^
-----------------------

But if I replace "drop table table_name" on "dyn_query := 'drop table
' || table_name; execute dyn_query" all works fine!
------------------------------
create or replace function f_safe_drop_table(varchar) returns bool as'
declare
table_name alias for $1;
tcount int4;
dyn_query varchar;
begin
select f_is_table_exist(table_name) into tcount;
if(tcount > 0) then
dyn_query := 'drop table ' || table_name;
execute dyn_query;
return true;
end if;
return false;
end
'language 'plpgsql';
======================

panorama2=# \i ./f_safe_drop_table.sql
CREATE FUNCTION

Also both functions on PG8.0 works fine!

Sergey Karin

In response to

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Dinesh Pandey 2005-11-14 11:06:47 Connection Oracle database from Postgres function
Previous Message A. Kretschmer 2005-11-14 06:04:30 Re: Does PG support updateable view?