Add some links to the CREATE FUNCTION reference page when describing
authorNeil Conway
Fri, 20 May 2005 01:52:25 +0000 (01:52 +0000)
committerNeil Conway
Fri, 20 May 2005 01:52:25 +0000 (01:52 +0000)
function definition for particular PLs. Original patch from David
Fetter, editorializing by Neil Conway.

doc/src/sgml/plperl.sgml
doc/src/sgml/plpython.sgml
doc/src/sgml/pltcl.sgml

index d00eeab856e6f20a7c62c52e3a2810f142429706..0680c6106e89296755bf4017bf0d08bfa0e7697a 100644 (file)
@@ -1,5 +1,5 @@
 
 
  
@@ -44,7 +44,9 @@ $PostgreSQL: pgsql/doc/src/sgml/plperl.sgml,v 2.39 2005/04/09 03:52:43 momjian E
   PL/Perl Functions and Arguments
 
   
-   To create a function in the PL/Perl language, use the standard syntax:
+   To create a function in the PL/Perl language, use the standard
+   
+   syntax:
 
 CREATE FUNCTION funcname (argument-types) RETURNS return-type AS $$
     # PL/Perl function body
index 81b96f9a1ada18102eb7c8b0233781dbe1e8c81a..c3f27e844bfe1f975604c699516ed84afa926f0b 100644 (file)
@@ -1,4 +1,4 @@
-
+
 
 
  PL/Python - Python Procedural Language
@@ -46,7 +46,9 @@
   PL/Python Functions
 
   
-   Functions in PL/Python are declared in the usual way, for example
+   Functions in PL/Python are declared via the usual 
+   linkend="sql-createfunction" endterm="sql-createfunction-title">
+   syntax. For example:
 
 CREATE FUNCTION myfunc(text) RETURNS text
     AS 'return args[0]'
index 2a86fa7b621a1047fcc2e8cd79affd12ff63ee31..f72351c193f4d69ec97b0c8ecb3232a551729bd5 100644 (file)
@@ -1,5 +1,5 @@
 
 
  
@@ -75,7 +75,9 @@ $PostgreSQL: pgsql/doc/src/sgml/pltcl.sgml,v 2.37 2005/04/09 03:52:43 momjian Ex
     PL/Tcl Functions and Arguments
 
     
-     To create a function in the PL/Tcl language, use the standard syntax:
+     To create a function in the PL/Tcl language, use
+     the standard 
+     endterm="sql-createfunction-title"> syntax:
 
 
 CREATE FUNCTION funcname (argument-types) RETURNS return-type AS $$