Re: how to drop function?

From: "J(dot)V(dot)" <jvsrvcs(at)gmail(dot)com>
To:
Cc: pgsql-general(at)postgresql(dot)org
Subject: Re: how to drop function?
Date: 2011-11-16 01:24:12
Message-ID: 4EC310BC.8040700@gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

this did not work.

On 11/15/2011 4:56 PM, Craig Ringer wrote:
> 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 J.V. 2011-11-16 01:25:01 Re: how to drop function?
Previous Message Adrian Klaver 2011-11-16 00:08:04 Re: how to drop function?