summaryrefslogtreecommitdiff
path: root/doc/src/sgml/xfunc.sgml
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2000-10-23 00:46:07 +0000
committerTom Lane <tgl@sss.pgh.pa.us>2000-10-23 00:46:07 +0000
commitc82c9559a771f58dc42ce93f227cccd368eb46e6 (patch)
tree469b6ad39c80ac0a1b4d84fc8c1df7e0d1245112 /doc/src/sgml/xfunc.sgml
parent9ace03183c56ca3474679bc56316e962d0af4b81 (diff)
downloadpostgresql-c82c9559a771f58dc42ce93f227cccd368eb46e6.tar.gz
Minor updates/corrections for CREATE/DROP FUNCTION/AGGREGATE/OPERATOR.
Diffstat (limited to 'doc/src/sgml/xfunc.sgml')
-rw-r--r--doc/src/sgml/xfunc.sgml4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/src/sgml/xfunc.sgml b/doc/src/sgml/xfunc.sgml
index b61c46de9c..d02718d53a 100644
--- a/doc/src/sgml/xfunc.sgml
+++ b/doc/src/sgml/xfunc.sgml
@@ -1,5 +1,5 @@
<!--
-$Header: /cvsroot/pgsql/doc/src/sgml/xfunc.sgml,v 1.21 2000/09/29 20:21:34 petere Exp $
+$Header: /cvsroot/pgsql/doc/src/sgml/xfunc.sgml,v 1.22 2000/10/23 00:46:06 tgl Exp $
-->
<chapter id="xfunc">
@@ -108,7 +108,7 @@ SELECT tp1( 17,100.0);
EMP, and retrieves multiple results:
<programlisting>
-CREATE FUNCTION hobbies (EMP) RETURNS SET OF hobbies
+CREATE FUNCTION hobbies (EMP) RETURNS SETOF hobbies
AS 'SELECT hobbies.* FROM hobbies
WHERE $1.name = hobbies.person'
LANGUAGE 'sql';