how to drop function?

From: "J(dot)V(dot)" <jvsrvcs(at)gmail(dot)com>
To: pgsql-general(at)postgresql(dot)org
Subject: how to drop function?
Date: 2011-11-15 23:38:20
Message-ID: 4EC2F7EC.1080106@gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

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.

J.V.

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Craig Ringer 2011-11-15 23:56:02 Re: how to drop function?
Previous Message David Johnston 2011-11-15 22:21:05 Questions about "EXPLAIN"