X-Original-To: pgsql-docs@postgresql.org Received: from candle.pha.pa.us (momjian.navpoint.com [207.106.42.251]) by postgresql.org (Postfix) with ESMTP id A57A8475E91 for ; Fri, 21 Mar 2003 12:11:31 -0500 (EST) Received: (from pgman@localhost) by candle.pha.pa.us (8.11.6/8.10.1) id h2LHBY807583 for pgsql-docs@postgresql.org; Fri, 21 Mar 2003 12:11:34 -0500 (EST) From: Bruce Momjian Message-Id: <200303211711.h2LHBY807583@candle.pha.pa.us> Subject: DECLARE manual page fix To: PostgreSQL-documentation Date: Fri, 21 Mar 2003 12:11:34 -0500 (EST) X-Mailer: ELM [version 2.4ME+ PL99 (25)] MIME-Version: 1.0 Content-Type: multipart/mixed; boundary=ELM1048266694-2267-0_ Content-Transfer-Encoding: 7bit X-Archive-Number: 200303/36 X-Sequence-Number: 1714 --ELM1048266694-2267-0_ Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset=US-ASCII I have applied the following patch to the DECLARE manual page. The page described INSENSITIVE cursors in terms of transactions, though they are not really the issue. -- Bruce Momjian | http://candle.pha.pa.us pgman@candle.pha.pa.us | (610) 359-1001 + If your life is a hard drive, | 13 Roberts Road + Christ can be your backup. | Newtown Square, Pennsylvania 19073 --ELM1048266694-2267-0_ Content-Transfer-Encoding: 7bit Content-Type: text/plain Content-Disposition: inline; filename="/bjm/diff" Index: doc/src/sgml/ref/declare.sgml =================================================================== RCS file: /cvsroot/pgsql-server/doc/src/sgml/ref/declare.sgml,v retrieving revision 1.19 diff -c -c -r1.19 declare.sgml *** doc/src/sgml/ref/declare.sgml 10 Mar 2003 03:53:48 -0000 1.19 --- doc/src/sgml/ref/declare.sgml 21 Mar 2003 16:51:36 -0000 *************** *** 58,66 **** SQL92 keyword indicating that data retrieved from the cursor should be unaffected by updates from other processes or cursors. ! Since cursor operations occur within transactions ! in PostgreSQL this is always the case. ! This keyword has no effect. --- 58,64 ---- SQL92 keyword indicating that data retrieved from the cursor should be unaffected by updates from other processes or cursors. ! By default, all cursors are insensitive. This keyword has no effect. --ELM1048266694-2267-0_--