diff options
author | Peter Eisentraut <peter@eisentraut.org> | 2019-02-25 08:38:59 +0100 |
---|---|---|
committer | Peter Eisentraut <peter@eisentraut.org> | 2019-02-25 08:38:59 +0100 |
commit | bc09d5e4cc1813c9af60c4537fe7d70ed1baae11 (patch) | |
tree | a18f8e9a28e600a13a9654cc6caacc1b56731434 /doc/src | |
parent | effe7d9552dd41fd6119404e39eecd2653cd966c (diff) | |
download | postgresql-bc09d5e4cc1813c9af60c4537fe7d70ed1baae11.tar.gz postgresql-bc09d5e4cc1813c9af60c4537fe7d70ed1baae11.zip |
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
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/xplang.sgml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/src/sgml/xplang.sgml b/doc/src/sgml/xplang.sgml index db765b46449..d215ce82d08 100644 --- a/doc/src/sgml/xplang.sgml +++ b/doc/src/sgml/xplang.sgml @@ -137,7 +137,7 @@ CREATE FUNCTION <replaceable>validator_function_name</replaceable>(oid) <para> Finally, the PL must be declared with the command <synopsis> -CREATE <optional>TRUSTED</optional> <optional>PROCEDURAL</optional> LANGUAGE <replaceable>language-name</replaceable> +CREATE <optional>TRUSTED</optional> LANGUAGE <replaceable>language-name</replaceable> HANDLER <replaceable>handler_function_name</replaceable> <optional>INLINE <replaceable>inline_function_name</replaceable></optional> <optional>VALIDATOR <replaceable>validator_function_name</replaceable></optional> ; @@ -200,7 +200,7 @@ CREATE FUNCTION plperl_validator(oid) RETURNS void AS <para> The command: <programlisting> -CREATE TRUSTED PROCEDURAL LANGUAGE plperl +CREATE TRUSTED LANGUAGE plperl HANDLER plperl_call_handler INLINE plperl_inline_handler VALIDATOR plperl_validator; |