mirror of
https://github.com/postgres/postgres.git
synced 2026-06-07 08:09:18 -04:00
bc09d5e4cc
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
12 lines
329 B
SQL
12 lines
329 B
SQL
/* src/pl/plpython/plpython2u--1.0.sql */
|
|
|
|
/*
|
|
* Currently, all the interesting stuff is done by CREATE LANGUAGE.
|
|
* Later we will probably "dumb down" that command and put more of the
|
|
* knowledge into this script.
|
|
*/
|
|
|
|
CREATE LANGUAGE plpython2u;
|
|
|
|
COMMENT ON LANGUAGE plpython2u IS 'PL/Python2U untrusted procedural language';
|