1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-07 00:36:50 +03:00

Add some links to the CREATE FUNCTION reference page when describing

function definition for particular PLs. Original patch from David
Fetter, editorializing by Neil Conway.
This commit is contained in:
Neil Conway
2005-05-20 01:52:25 +00:00
parent ee85870e23
commit 4de23092d0
3 changed files with 12 additions and 6 deletions

View File

@ -1,4 +1,4 @@
<!-- $PostgreSQL: pgsql/doc/src/sgml/plpython.sgml,v 1.28 2005/04/09 03:52:43 momjian Exp $ -->
<!-- $PostgreSQL: pgsql/doc/src/sgml/plpython.sgml,v 1.29 2005/05/20 01:52:25 neilc Exp $ -->
<chapter id="plpython">
<title>PL/Python - Python Procedural Language</title>
@ -46,7 +46,9 @@
<title>PL/Python Functions</title>
<para>
Functions in PL/Python are declared in the usual way, for example
Functions in PL/Python are declared via the usual <xref
linkend="sql-createfunction" endterm="sql-createfunction-title">
syntax. For example:
<programlisting>
CREATE FUNCTION myfunc(text) RETURNS text
AS 'return args[0]'