Delete function without knowing the elements - Mailing list pgsql-sql

From Peter Atkins
Subject Delete function without knowing the elements
Date
Msg-id 1CAD483B723BD611B0C10090274FF0685547ED@NXCDMAIL
Whole thread Raw
Responses Re: Delete function without knowing the elements  ("Marie G. Tuite" <marie.tuite@edisonaffiliates.com>)
List pgsql-sql
All,

I created a function that I can't seem to delete.

[no sure how many parameters]

CREATE OR REPLACE FUNCTION insertEntry (int4, varchar, varchar, numeric,
varchar, timestamp, varchar, int4, numeric, varchar, int4, ....,....)RETURNS INT4 AS '
.................................................END;
' LANGUAGE 'plpgsql';

How can I delete this without knowing how many I used to create it? This is
what I used to delete others in the past.

DROP FUNCTION insertEntry(int4, varchar, varchar, ...);

Thanks,
-pete



pgsql-sql by date:

Previous
From: Wei Weng
Date:
Subject: Re: Is this valid?
Next
From: "Marie G. Tuite"
Date:
Subject: Re: Delete function without knowing the elements