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 7927232A1BB for ; Thu, 30 Sep 2004 04:58:00 +0100 (BST) 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 09477-08 for ; Thu, 30 Sep 2004 03:57:49 +0000 (GMT) Received: from mr2.surnet.cl (av2.surnet.cl [216.155.73.169]) by svr1.postgresql.org (Postfix) with ESMTP id 226A7329F49 for ; Thu, 30 Sep 2004 04:57:48 +0100 (BST) Received: from smtp2.surnet.cl (216.155.73.169) by mr2.surnet.cl (7.0.024) id 4149C4A50022000E; Wed, 29 Sep 2004 23:54:52 -0400 Received: from av1.surnet.cl ([216.155.73.168]) by smtp2.surnet.cl (MailMonitor for SMTP v1.2.2 ) ; Wed, 29 Sep 2004 23:54:52 -0400 (CLT) Received: from cluster.surnet.cl (216.155.73.165) by smtp1.surnet.cl (7.0.024) id 413F2C340031BE1E; Wed, 29 Sep 2004 23:57:34 -0400 Received: from 216.155.88.75.dsl.surnet.cl (216.155.89.166) by cluster.surnet.cl (7.0.024) (authenticated as alvherre@surnet.cl) id 4134D3220034676C; Wed, 29 Sep 2004 23:57:39 -0400 Received: by 216.155.88.75.dsl.surnet.cl (Postfix, from userid 500) id ADC145A2D; Wed, 29 Sep 2004 23:58:20 -0400 (CLT) Date: Wed, 29 Sep 2004 23:58:20 -0400 From: Alvaro Herrera To: Neil Conway Cc: Kris Jurka , pgsql-docs@postgresql.org Subject: Re: Add tablespace index entry Message-ID: <20040930035820.GA10653@dcc.uchile.cl> References: <1096512001.28946.2819.camel@localhost.localdomain> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="IJpNTDwzlM2Ie8A6" Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <1096512001.28946.2819.camel@localhost.localdomain> User-Agent: Mutt/1.5.6i 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: 200409/49 X-Sequence-Number: 2568 --IJpNTDwzlM2Ie8A6 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit On Thu, Sep 30, 2004 at 12:40:01PM +1000, Neil Conway wrote: > On Wed, 2004-09-29 at 23:21, Kris Jurka wrote: > > This adds an index entry for tablespaces which is tricky to find > > otherwise. > > Patch applied -- thanks! > > (FWIW, adding index entries for stuff is a pretty easy TODO item, if > anyone's looking for something worth contributing...) Cool! Please apply this one as well ;-) -- Alvaro Herrera () "La experiencia nos dice que el hombre peló millones de veces las patatas, pero era forzoso admitir la posibilidad de que en un caso entre millones, las patatas pelarían al hombre" (Ijon Tichy) --IJpNTDwzlM2Ie8A6 Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="prepared.patch" Index: doc/src/sgml/ref/deallocate.sgml =================================================================== RCS file: /home/alvherre/cvs/pgsql-server/doc/src/sgml/ref/deallocate.sgml,v retrieving revision 1.6 diff -c -r1.6 deallocate.sgml *** doc/src/sgml/ref/deallocate.sgml 20 Sep 2004 00:04:19 -0000 1.6 --- doc/src/sgml/ref/deallocate.sgml 24 Sep 2004 03:04:48 -0000 *************** *** 18,23 **** --- 18,28 ---- DEALLOCATE + + prepared statements + DEALLOCATE + + DEALLOCATE [ PREPARE ] plan_name Index: doc/src/sgml/ref/execute.sgml =================================================================== RCS file: /home/alvherre/cvs/pgsql-server/doc/src/sgml/ref/execute.sgml,v retrieving revision 1.11 diff -c -r1.11 execute.sgml *** doc/src/sgml/ref/execute.sgml 20 Sep 2004 00:04:19 -0000 1.11 --- doc/src/sgml/ref/execute.sgml 24 Sep 2004 03:04:43 -0000 *************** *** 18,23 **** --- 18,28 ---- EXECUTE + + prepared statements + EXECUTE + + EXECUTE plan_name [ (parameter [, ...] ) ] Index: doc/src/sgml/ref/explain.sgml =================================================================== RCS file: /home/alvherre/cvs/pgsql-server/doc/src/sgml/ref/explain.sgml,v retrieving revision 1.33 diff -c -r1.33 explain.sgml *** doc/src/sgml/ref/explain.sgml 9 Mar 2004 16:57:47 -0000 1.33 --- doc/src/sgml/ref/explain.sgml 24 Sep 2004 03:05:08 -0000 *************** *** 18,23 **** --- 18,33 ---- EXPLAIN + + prepared statements + EXPLAIN + + + + cursors + EXPLAIN + + EXPLAIN [ ANALYZE ] [ VERBOSE ] statement Index: doc/src/sgml/ref/prepare.sgml =================================================================== RCS file: /home/alvherre/cvs/pgsql-server/doc/src/sgml/ref/prepare.sgml,v retrieving revision 1.13 diff -c -r1.13 prepare.sgml *** doc/src/sgml/ref/prepare.sgml 20 Sep 2004 00:04:19 -0000 1.13 --- doc/src/sgml/ref/prepare.sgml 24 Sep 2004 03:04:38 -0000 *************** *** 18,23 **** --- 18,28 ---- PREPARE + + prepared statements + PREPARE + + PREPARE plan_name [ (datatype [, ...] ) ] AS statement --IJpNTDwzlM2Ie8A6--