mirror of https://github.com/postgres/postgres
Remove some unnecessary, legacy-looking use of the PROCEDURAL keyword before LANGUAGE. We mostly don't use this anymore, so some of these look a bit old. There is still some use in pg_dump, which is harder to remove because it's baked into the archive format, so I'm not touching that. Discussion: https://www.postgresql.org/message-id/2330919b-62d9-29ac-8de3-58c024fdcb96@2ndquadrant.compull/38/head
parent
effe7d9552
commit
bc09d5e4cc
@ -1,5 +1,5 @@ |
||||
/* src/pl/tcl/pltcl--unpackaged--1.0.sql */ |
||||
|
||||
ALTER EXTENSION pltcl ADD PROCEDURAL LANGUAGE pltcl; |
||||
ALTER EXTENSION pltcl ADD LANGUAGE pltcl; |
||||
-- ALTER ADD LANGUAGE doesn't pick up the support functions, so we have to. |
||||
ALTER EXTENSION pltcl ADD FUNCTION pltcl_call_handler(); |
||||
|
||||
@ -1,5 +1,5 @@ |
||||
/* src/pl/tcl/pltclu--unpackaged--1.0.sql */ |
||||
|
||||
ALTER EXTENSION pltclu ADD PROCEDURAL LANGUAGE pltclu; |
||||
ALTER EXTENSION pltclu ADD LANGUAGE pltclu; |
||||
-- ALTER ADD LANGUAGE doesn't pick up the support functions, so we have to. |
||||
ALTER EXTENSION pltclu ADD FUNCTION pltclu_call_handler(); |
||||
|
||||
Loading…
Reference in new issue