I want to delete a bunch of procs from the database because I'v stopped
using some and changed the arguments on others. Is it sufficient to do
something like
DELETE FROM pg_proc WHERE proname IN (....);
Or do I have to use DROP FUNCTION to clean anything else up?
Thanks
Jay