Re: Wrong drop procedure example

2019-08-16 Thread Tom Lane
PG Doc comments form writes: > 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; Works for me: regression=# create procedure do_db_ma

Wrong drop procedure example

2019-08-16 Thread PG Doc comments form
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