diff options
author | Bruce Momjian <bruce@momjian.us> | 2020-12-23 09:37:37 -0500 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2020-12-23 09:37:37 -0500 |
commit | 0eaaeabed7c5798260c2ca20c711527acd4f0ce2 (patch) | |
tree | 17a4112ff3416d1c5778711f7238ea4e1483a396 | |
parent | 35ad5c7c7eed04e0cc5ea0e59defd5e929e5debc (diff) |
docs: document which server-side languages can create procs
This was missed when the feature was added.
Reported-by: Daniel Westermann
Discussion: https://postgr.es/m/160624532969.25818.4767632047905006142@wrigleys.postgresql.org
Backpatch-through: 11
-rw-r--r-- | doc/src/sgml/plperl.sgml | 4 | ||||
-rw-r--r-- | doc/src/sgml/plpgsql.sgml | 4 | ||||
-rw-r--r-- | doc/src/sgml/plpython.sgml | 2 | ||||
-rw-r--r-- | doc/src/sgml/pltcl.sgml | 2 | ||||
-rw-r--r-- | doc/src/sgml/spi.sgml | 2 |
5 files changed, 7 insertions, 7 deletions
diff --git a/doc/src/sgml/plperl.sgml b/doc/src/sgml/plperl.sgml index 78ad2f01135..bd4ff7770f1 100644 --- a/doc/src/sgml/plperl.sgml +++ b/doc/src/sgml/plperl.sgml @@ -13,13 +13,13 @@ <para> PL/Perl is a loadable procedural language that enables you to write - <productname>PostgreSQL</productname> functions in the + <productname>PostgreSQL</productname> functions and procedures in the <ulink url="https://www.perl.org">Perl programming language</ulink>. </para> <para> The main advantage to using PL/Perl is that this allows use, - within stored functions, of the manyfold <quote>string + within stored functions and procedures, of the manyfold <quote>string munging</quote> operators and functions available for Perl. Parsing complex strings might be easier using Perl than it is with the string functions and control structures provided in PL/pgSQL. diff --git a/doc/src/sgml/plpgsql.sgml b/doc/src/sgml/plpgsql.sgml index 5e75c47d686..0ceb89c5e98 100644 --- a/doc/src/sgml/plpgsql.sgml +++ b/doc/src/sgml/plpgsql.sgml @@ -19,7 +19,7 @@ <itemizedlist> <listitem> <para> - can be used to create functions and triggers, + can be used to create functions, procedures, and triggers, </para> </listitem> <listitem> @@ -34,7 +34,7 @@ </listitem> <listitem> <para> - inherits all user-defined types, functions, and operators, + inherits all user-defined types, functions, procedures, and operators, </para> </listitem> <listitem> diff --git a/doc/src/sgml/plpython.sgml b/doc/src/sgml/plpython.sgml index 60a59074640..111ef27de4c 100644 --- a/doc/src/sgml/plpython.sgml +++ b/doc/src/sgml/plpython.sgml @@ -8,7 +8,7 @@ <para> The <application>PL/Python</application> procedural language allows - <productname>PostgreSQL</productname> functions to be written in the + <productname>PostgreSQL</productname> functions and procedures to be written in the <ulink url="https://www.python.org">Python language</ulink>. </para> diff --git a/doc/src/sgml/pltcl.sgml b/doc/src/sgml/pltcl.sgml index b0154cc7a3d..cf2a57eac63 100644 --- a/doc/src/sgml/pltcl.sgml +++ b/doc/src/sgml/pltcl.sgml @@ -16,7 +16,7 @@ <productname>PostgreSQL</productname> database system that enables the <ulink url="https://www.tcl.tk/"> Tcl language</ulink> to be used to write - <productname>PostgreSQL</productname> functions. + <productname>PostgreSQL</productname> functions and procedures. </para> <!-- **** PL/Tcl overview **** --> diff --git a/doc/src/sgml/spi.sgml b/doc/src/sgml/spi.sgml index 6f4f3bae6ff..22e6bd32629 100644 --- a/doc/src/sgml/spi.sgml +++ b/doc/src/sgml/spi.sgml @@ -11,7 +11,7 @@ The <firstterm>Server Programming Interface</firstterm> (<acronym>SPI</acronym>) gives writers of user-defined <acronym>C</acronym> functions the ability to run - <acronym>SQL</acronym> commands inside their functions. + <acronym>SQL</acronym> commands inside their functions or procedures. <acronym>SPI</acronym> is a set of interface functions to simplify access to the parser, planner, and executor. <acronym>SPI</acronym> also does some |