X-Original-To: pgsql-docs-postgresql.org@localhost.postgresql.org Received: from localhost (unknown [200.46.204.144]) by svr1.postgresql.org (Postfix) with ESMTP id E37993A45E7 for ; Mon, 1 Nov 2004 20:22:09 +0000 (GMT) Received: from svr1.postgresql.org ([200.46.204.71]) by localhost (av.hub.org [200.46.204.144]) (amavisd-new, port 10024) with ESMTP id 54257-10 for ; Mon, 1 Nov 2004 20:21:59 +0000 (GMT) Received: from fetter.org (dsl092-188-065.sfo1.dsl.speakeasy.net [66.92.188.65]) by svr1.postgresql.org (Postfix) with ESMTP id 42D813A451E for ; Mon, 1 Nov 2004 20:21:59 +0000 (GMT) Received: from fetter.org (localhost.localdomain [127.0.0.1]) by fetter.org (8.12.11/8.12.10) with ESMTP id iA1KLsl7018276; Mon, 1 Nov 2004 12:21:54 -0800 Received: (from shackle@localhost) by fetter.org (8.12.11/8.12.11/Submit) id iA1KLrXd018275; Mon, 1 Nov 2004 12:21:53 -0800 Date: Mon, 1 Nov 2004 12:21:53 -0800 From: David Fetter To: Peter Eisentraut Cc: Tom Lane , PostgreSQL Docs Subject: Re: Array function Message-ID: <20041101202153.GB11825@fetter.org> References: <20041101003614.GG13884@fetter.org> <4282.1099280447@sss.pgh.pa.us> <20041101052117.GI13884@fetter.org> <200411012047.05282.peter_e@gmx.net> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="k+w/mQv8wyuph6w0" Content-Disposition: inline In-Reply-To: <200411012047.05282.peter_e@gmx.net> User-Agent: Mutt/1.4.2i X-Virus-Scanned: by amavisd-new at hub.org X-Spam-Status: No, hits=0.0 tagged_above=0.0 required=5.0 tests= X-Spam-Level: X-Archive-Number: 200411/8 X-Sequence-Number: 2643 --k+w/mQv8wyuph6w0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Mon, Nov 01, 2004 at 08:47:05PM +0100, Peter Eisentraut wrote: > David Fetter wrote: > > Please find attached a different diff :) > > If you want to write a note, use the element. Thanks for the tip :) Fixed, attaching a diff against CVS HEAD. Cheers, D -- David Fetter david@fetter.org http://fetter.org/ phone: +1 510 893 6100 mobile: +1 415 235 3778 Remember to vote! --k+w/mQv8wyuph6w0 Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="array.diff" Index: doc/src/sgml/func.sgml =================================================================== RCS file: /projects/cvsroot/pgsql/doc/src/sgml/func.sgml,v retrieving revision 1.221 diff -u -r1.221 func.sgml --- doc/src/sgml/func.sgml 26 Oct 2004 22:16:11 -0000 1.221 +++ doc/src/sgml/func.sgml 1 Nov 2004 20:21:02 -0000 @@ -6931,6 +6931,18 @@ + + + Although it is not strictly a function and does not appear in \df + in psql, ARRAY(), mentioned in acts much like a + table function (equivalently, a + set-returning function or a + SRF--see ) + which takes anyarray and returns a set of + anyelement. + + --k+w/mQv8wyuph6w0--