Wrong drop procedure example
PG Doc comments form <[email protected]>
| Newsgroups | gmane.comp.db.postgresql.devel.documentation |
|---|---|
| Message-ID | <[email protected]> |
The following documentation comment has been logged on the website: Page: https://www.postgresql.org/docs/11/sql-dropprocedure.html Description: Hi, I noticed that drop procedure with parenthesis doesn't work (procedure name not found), but without parenthesis it works. Not OK: DROP PROCEDURE do_db_maintenance(); OK: DROP PROCEDURE do_db_maintenance; Br, Norbert