mirror of
https://git.postgresql.org/git/postgresql.git
synced 2026-02-12 01:18:35 +08:00
Remove unnecessary use of PROCEDURAL
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.com
This commit is contained in:
@ -1,6 +1,6 @@
|
||||
/* src/pl/plpython/plpythonu--unpackaged--1.0.sql */
|
||||
|
||||
ALTER EXTENSION plpythonu ADD PROCEDURAL LANGUAGE plpythonu;
|
||||
ALTER EXTENSION plpythonu ADD LANGUAGE plpythonu;
|
||||
-- ALTER ADD LANGUAGE doesn't pick up the support functions, so we have to.
|
||||
ALTER EXTENSION plpythonu ADD FUNCTION plpython_call_handler();
|
||||
ALTER EXTENSION plpythonu ADD FUNCTION plpython_inline_handler(internal);
|
||||
|
||||
Reference in New Issue
Block a user