Re: how to drop function?

From: Craig Ringer <ringerc(at)ringerc(dot)id(dot)au>
To: "J(dot)V(dot)" <jvsrvcs(at)gmail(dot)com>
Cc: pgsql-general(at)postgresql(dot)org
Subject: Re: how to drop function?
Date: 2011-11-15 23:56:02
Message-ID: 4EC2FC12.6010705@ringerc.id.au
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

On 11/16/2011 07:38 AM, J.V. wrote:
> How do I drop a function that was created like so:
>
> create or replace function process_table (action TEXT, v_table_name
> varchar(100)) RETURNS BOOLEAN
> AS $$
> DECLARE
> ....
> BEGIN
> ...
> END;
> $$ LANGUAGE plpgsql;
>
> ---
> I have tried various ways, but it always fails.

DROP FUNCTION process_table (action TEXT, v_table_name varchar(100));

--
Craig Ringer

In response to

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Rebecca Clarke 2011-11-15 23:56:32 Re: how to drop function?
Previous Message J.V. 2011-11-15 23:38:20 how to drop function?