postgresql/doc/src/sgml/xplang.sgml

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

231 lines
9.4 KiB
Plaintext
Raw Normal View History

2010-09-20 22:08:53 +02:00
<!-- doc/src/sgml/xplang.sgml -->
<chapter id="xplang">
<title>Procedural Languages</title>
2003-08-31 19:32:24 +02:00
<indexterm zone="xplang">
<primary>procedural language</primary>
</indexterm>
<para>
2004-12-30 22:45:37 +01:00
<productname>PostgreSQL</productname> allows user-defined functions
to be written in other languages besides SQL and C. These other
languages are generically called <firstterm>procedural
languages</firstterm> (<acronym>PL</acronym>s). For a function
2004-12-30 22:45:37 +01:00
written in a procedural language, the database server has
2000-04-03 00:59:40 +02:00
no built-in knowledge about how to interpret the function's source
text. Instead, the task is passed to a special handler that knows
the details of the language. The handler could either do all the
work of parsing, syntax analysis, execution, etc. itself, or it
could serve as <quote>glue</quote> between
<productname>PostgreSQL</productname> and an existing implementation
2004-12-30 22:45:37 +01:00
of a programming language. The handler itself is a
2003-04-07 03:29:26 +02:00
C language function compiled into a shared object and
2004-12-30 22:45:37 +01:00
loaded on demand, just like any other C function.
</para>
2000-04-03 00:59:40 +02:00
<para>
2004-12-30 22:45:37 +01:00
There are currently four procedural languages available in the
standard <productname>PostgreSQL</productname> distribution:
<application>PL/pgSQL</application> (<xref linkend="plpgsql"/>),
<application>PL/Tcl</application> (<xref linkend="pltcl"/>),
<application>PL/Perl</application> (<xref linkend="plperl"/>), and
<application>PL/Python</application> (<xref linkend="plpython"/>).
There are additional procedural languages available that are not
included in the core distribution. <xref linkend="external-projects"/>
has information about finding them. In addition other languages can
be defined by users; the basics of developing a new procedural
language are covered in <xref linkend="plhandler"/>.
</para>
<sect1 id="xplang-install">
<title>Installing Procedural Languages</title>
<para>
A procedural language must be <quote>installed</quote> into each
database where it is to be used. But procedural languages installed in
the database <literal>template1</literal> are automatically available in all
2004-12-30 22:45:37 +01:00
subsequently created databases, since their entries in
<literal>template1</literal> will be copied by <command>CREATE DATABASE</command>.
2004-12-30 22:45:37 +01:00
So the database administrator can
2003-04-07 03:29:26 +02:00
decide which languages are available in which databases and can make
some languages available by default if desired.
</para>
<para>
For the languages supplied with the standard distribution, it is
only necessary to execute <command>CREATE EXTENSION</command>
<replaceable>language_name</replaceable> to install the language into the
current database.
The manual procedure described below is only recommended for
installing languages that have not been packaged as extensions.
</para>
<procedure>
<title>Manual Procedural Language Installation</title>
<para>
A procedural language is installed in a database in five steps,
which must be carried out by a database superuser. In most cases
the required SQL commands should be packaged as the installation script
of an <quote>extension</quote>, so that <command>CREATE EXTENSION</command> can be
used to execute them.
</para>
2004-12-30 22:45:37 +01:00
<step performance="required" id="xplang-install-cr1">
<para>
The shared object for the language handler must be compiled and
installed into an appropriate library directory. This works in the same
way as building and installing modules with regular user-defined C
functions does; see <xref linkend="dfunc"/>. Often, the language
2004-12-30 22:45:37 +01:00
handler will depend on an external library that provides the actual
programming language engine; if so, that must be installed as well.
</para>
</step>
2004-12-30 22:45:37 +01:00
<step performance="required" id="xplang-install-cr2">
<para>
The handler must be declared with the command
<synopsis>
2003-04-07 03:29:26 +02:00
CREATE FUNCTION <replaceable>handler_function_name</replaceable>()
RETURNS language_handler
AS '<replaceable>path-to-shared-object</replaceable>'
LANGUAGE C;
</synopsis>
2003-04-07 03:29:26 +02:00
The special return type of <type>language_handler</type> tells
the database system that this function does not return one of
the defined <acronym>SQL</acronym> data types and is not directly usable
in <acronym>SQL</acronym> statements.
</para>
</step>
2004-12-30 22:45:37 +01:00
<step performance="optional" id="xplang-install-cr3">
<para>
Optionally, the language handler can provide an <quote>inline</quote>
handler function that executes anonymous code blocks
Improve <xref> vs. <command> formatting in the documentation SQL commands are generally marked up as <command>, except when a link to a reference page is used using <xref>. But the latter doesn't create monospace markup, so this looks strange especially when a paragraph contains a mix of links and non-links. We considered putting <command> in the <refentrytitle> on the target side, but that creates some formatting side effects elsewhere. Generally, it seems safer to solve this on the link source side. We can't put the <xref> inside the <command>; the DTD doesn't allow this. DocBook 5 would allow the <command> to have the linkend attribute itself, but we are not there yet. So to solve this for now, convert the <xref>s to <link> plus <command>. This gives the correct look and also gives some more flexibility what we can put into the link text (e.g., subcommands or other clauses). In the future, these could then be converted to DocBook 5 style. I haven't converted absolutely all xrefs to SQL command reference pages, only those where we care about the appearance of the link text or where it was otherwise appropriate to make the appearance match a bit better. Also in some cases, the links where repetitive, so in those cases the links where just removed and replaced by a plain <command>. In cases where we just want the link and don't specifically care about the generated link text (typically phrased "for further information see <xref ...>") the xref is kept. Reported-by: Dagfinn Ilmari Mannsåker <ilmari@ilmari.org> Discussion: https://www.postgresql.org/message-id/flat/87o8pco34z.fsf@wibble.ilmari.org
2020-10-03 16:16:51 +02:00
(<link linkend="sql-do"><command>DO</command></link> commands)
written in this language. If an inline handler function
is provided by the language, declare it with a command like
<synopsis>
CREATE FUNCTION <replaceable>inline_function_name</replaceable>(internal)
RETURNS void
AS '<replaceable>path-to-shared-object</replaceable>'
LANGUAGE C;
</synopsis>
</para>
</step>
<step performance="optional" id="xplang-install-cr4">
2004-12-30 22:45:37 +01:00
<para>
Optionally, the language handler can provide a <quote>validator</quote>
2004-12-30 22:45:37 +01:00
function that checks a function definition for correctness without
actually executing it. The validator function is called by
<command>CREATE FUNCTION</command> if it exists. If a validator function
is provided by the language, declare it with a command like
2004-12-30 22:45:37 +01:00
<synopsis>
CREATE FUNCTION <replaceable>validator_function_name</replaceable>(oid)
RETURNS void
AS '<replaceable>path-to-shared-object</replaceable>'
LANGUAGE C STRICT;
2004-12-30 22:45:37 +01:00
</synopsis>
</para>
</step>
<step performance="required" id="xplang-install-cr5">
<para>
Finally, the PL must be declared with the command
<synopsis>
CREATE <optional>TRUSTED</optional> LANGUAGE <replaceable>language_name</replaceable>
2004-12-30 22:45:37 +01:00
HANDLER <replaceable>handler_function_name</replaceable>
<optional>INLINE <replaceable>inline_function_name</replaceable></optional>
2004-12-30 22:45:37 +01:00
<optional>VALIDATOR <replaceable>validator_function_name</replaceable></optional> ;
</synopsis>
2003-04-07 03:29:26 +02:00
The optional key word <literal>TRUSTED</literal> specifies that
the language does not grant access to data that the user would
not otherwise have. Trusted languages are designed for ordinary
database users (those without superuser privilege) and allows them
to safely create functions and
2002-01-07 03:29:15 +01:00
procedures. Since PL functions are executed inside the database
server, the <literal>TRUSTED</literal> flag should only be given
for languages that do not allow access to database server
internals or the file system. The languages
<application>PL/pgSQL</application>,
<application>PL/Tcl</application>, and
<application>PL/Perl</application>
are considered trusted; the languages
<application>PL/TclU</application>,
<application>PL/PerlU</application>, and
<application>PL/PythonU</application>
are designed to provide unlimited functionality and should
<emphasis>not</emphasis> be marked trusted.
</para>
</step>
</procedure>
<para>
<xref linkend="xplang-install-example"/> shows how the manual
2003-04-07 03:29:26 +02:00
installation procedure would work with the language
<application>PL/Perl</application>.
</para>
2003-04-07 03:29:26 +02:00
<example id="xplang-install-example">
<title>Manual Installation of <application>PL/Perl</application></title>
<para>
The following command tells the database server where to find the
shared object for the <application>PL/Perl</application> language's call
handler function:
<programlisting>
CREATE FUNCTION plperl_call_handler() RETURNS language_handler AS
'$libdir/plperl' LANGUAGE C;
</programlisting>
</para>
2004-12-30 22:45:37 +01:00
<para>
<application>PL/Perl</application> has an inline handler function
and a validator function, so we declare those too:
2004-12-30 22:45:37 +01:00
<programlisting>
CREATE FUNCTION plperl_inline_handler(internal) RETURNS void AS
Invent "trusted" extensions, and remove the pg_pltemplate catalog. This patch creates a new extension property, "trusted". An extension that's marked that way in its control file can be installed by a non-superuser who has the CREATE privilege on the current database, even if the extension contains objects that normally would have to be created by a superuser. The objects within the extension will (by default) be owned by the bootstrap superuser, but the extension itself will be owned by the calling user. This allows replicating the old behavior around trusted procedural languages, without all the special-case logic in CREATE LANGUAGE. We have, however, chosen to loosen the rules slightly: formerly, only a database owner could take advantage of the special case that allowed installation of a trusted language, but now anyone who has CREATE privilege can do so. Having done that, we can delete the pg_pltemplate catalog, moving the knowledge it contained into the extension script files for the various PLs. This ends up being no change at all for the in-core PLs, but it is a large step forward for external PLs: they can now have the same ease of installation as core PLs do. The old "trusted PL" behavior was only available to PLs that had entries in pg_pltemplate, but now any extension can be marked trusted if appropriate. This also removes one of the stumbling blocks for our Python 2 -> 3 migration, since the association of "plpythonu" with Python 2 is no longer hard-wired into pg_pltemplate's initial contents. Exactly where we go from here on that front remains to be settled, but one problem is fixed. Patch by me, reviewed by Peter Eisentraut, Stephen Frost, and others. Discussion: https://postgr.es/m/5889.1566415762@sss.pgh.pa.us
2020-01-30 00:42:43 +01:00
'$libdir/plperl' LANGUAGE C STRICT;
CREATE FUNCTION plperl_validator(oid) RETURNS void AS
'$libdir/plperl' LANGUAGE C STRICT;
2004-12-30 22:45:37 +01:00
</programlisting>
</para>
<para>
The command:
<programlisting>
CREATE TRUSTED LANGUAGE plperl
HANDLER plperl_call_handler
INLINE plperl_inline_handler
VALIDATOR plperl_validator;
</programlisting>
2004-12-30 22:45:37 +01:00
then defines that the previously declared functions
should be invoked for functions and procedures where the
language attribute is <literal>plperl</literal>.
</para>
2002-01-07 03:29:15 +01:00
</example>
2003-04-07 03:29:26 +02:00
<para>
In a default <productname>PostgreSQL</productname> installation,
the handler for the <application>PL/pgSQL</application> language
is built and installed into the <quote>library</quote>
directory; furthermore, the <application>PL/pgSQL</application> language
itself is installed in all databases.
If <application>Tcl</application> support is configured in, the handlers for
<application>PL/Tcl</application> and <application>PL/TclU</application> are built and installed
in the library directory, but the language itself is not installed in any
database by default.
Likewise, the <application>PL/Perl</application> and <application>PL/PerlU</application>
handlers are built and installed if Perl support is configured, and the
<application>PL/PythonU</application> handler is installed if Python support is
configured, but these languages are not installed by default.
2003-04-07 03:29:26 +02:00
</para>
</sect1>
</chapter>