Index: doc/src/sgml/ref/close.sgml =================================================================== RCS file: /home/neil/cvsup/cvs/pgsql-server/doc/src/sgml/ref/close.sgml,v retrieving revision 1.14 diff -c -r1.14 close.sgml *** doc/src/sgml/ref/close.sgml 15 Apr 2003 13:25:08 -0000 1.14 --- doc/src/sgml/ref/close.sgml 9 Aug 2003 08:34:36 -0000 *************** *** 31,39 **** ! Every open cursor is implicitly closed when a transaction is ! terminated by COMMIT or ! ROLLBACK. --- 31,43 ---- ! Every non-holdable open cursor is implicitly closed when a ! transaction is terminated by COMMIT or ! ROLLBACK. Holdable cursors are implicitely ! closed if the transaction that created them aborts via ! ROLLBACK; if this does not happen, the holdable ! cursor remains open until an explicit CLOSE is ! executed, or the client disconnects.