aboutsummaryrefslogtreecommitdiff
path: root/doc/src/sgml/plpython.sgml
diff options
context:
space:
mode:
Diffstat (limited to 'doc/src/sgml/plpython.sgml')
-rw-r--r--doc/src/sgml/plpython.sgml6
1 files changed, 4 insertions, 2 deletions
diff --git a/doc/src/sgml/plpython.sgml b/doc/src/sgml/plpython.sgml
index 81b96f9a1ad..c3f27e844bf 100644
--- a/doc/src/sgml/plpython.sgml
+++ b/doc/src/sgml/plpython.sgml
@@ -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]'