Index: doc/src/sgml/plperl.sgml
===================================================================
RCS file: /projects/cvsroot/pgsql/doc/src/sgml/plperl.sgml,v
retrieving revision 2.39
diff -c -r2.39 plperl.sgml
*** doc/src/sgml/plperl.sgml 9 Apr 2005 03:52:43 -0000 2.39
--- doc/src/sgml/plperl.sgml 20 May 2005 00:02:47 -0000
***************
*** 44,50 ****
PL/Perl Functions and Arguments
! 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
--- 44,51 ----
PL/Perl Functions and Arguments
! 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: doc/src/sgml/plpgsql.sgml
===================================================================
RCS file: /projects/cvsroot/pgsql/doc/src/sgml/plpgsql.sgml,v
retrieving revision 1.67
diff -c -r1.67 plpgsql.sgml
*** doc/src/sgml/plpgsql.sgml 19 Apr 2005 03:55:43 -0000 1.67
--- doc/src/sgml/plpgsql.sgml 20 May 2005 00:02:50 -0000
***************
*** 53,61 ****
Except for input/output conversion and calculation functions
for user-defined types, anything that can be defined in C language
functions can also be done with PL/pgSQL.
! For example, it is possible to
! create complex conditional computation functions and later use
! them to define operators or use them in index expressions.
--- 53,61 ----
Except for input/output conversion and calculation functions
for user-defined types, anything that can be defined in C language
functions can also be done with PL/pgSQL.
! For example, it is possible to create complex conditional
! computation functions () and
! later use them to define operators or use them in index expressions.
Index: doc/src/sgml/plpython.sgml
===================================================================
RCS file: /projects/cvsroot/pgsql/doc/src/sgml/plpython.sgml,v
retrieving revision 1.28
diff -c -r1.28 plpython.sgml
*** doc/src/sgml/plpython.sgml 9 Apr 2005 03:52:43 -0000 1.28
--- doc/src/sgml/plpython.sgml 20 May 2005 00:02:50 -0000
***************
*** 46,52 ****
PL/Python Functions
! Functions in PL/Python are declared in the usual way, for example
CREATE FUNCTION myfunc(text) RETURNS text
AS 'return args[0]'
--- 46,53 ----
PL/Python Functions
! Functions in PL/Python are declared in the usual way
! (), for example
CREATE FUNCTION myfunc(text) RETURNS text
AS 'return args[0]'
Index: doc/src/sgml/pltcl.sgml
===================================================================
RCS file: /projects/cvsroot/pgsql/doc/src/sgml/pltcl.sgml,v
retrieving revision 2.37
diff -c -r2.37 pltcl.sgml
*** doc/src/sgml/pltcl.sgml 9 Apr 2005 03:52:43 -0000 2.37
--- doc/src/sgml/pltcl.sgml 20 May 2005 00:02:51 -0000
***************
*** 75,81 ****
PL/Tcl Functions and Arguments
! To create a function in the PL/Tcl> language, use the standard syntax:
CREATE FUNCTION funcname (argument-types) RETURNS return-type AS $$
--- 75,82 ----
PL/Tcl Functions and Arguments
! To create a function in the PL/Tcl> language, use
! the standard syntax ():
CREATE FUNCTION funcname (argument-types) RETURNS return-type AS $$