diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2003-11-16 03:23:57 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2003-11-16 03:23:57 +0000 |
commit | 8e82d32315ba36b4c96c4665280cec030cc7f6a4 (patch) | |
tree | 3d922b011447e9c30313cadf5da632a59392929a | |
parent | 4fa3b94f6bebed453e7d02182ce5dd3584469d85 (diff) |
More release-notes copy editing, from Neil Conway.
-rw-r--r-- | doc/src/sgml/release.sgml | 24 |
1 files changed, 14 insertions, 10 deletions
diff --git a/doc/src/sgml/release.sgml b/doc/src/sgml/release.sgml index 5c8abc3792b..58d0662ca6a 100644 --- a/doc/src/sgml/release.sgml +++ b/doc/src/sgml/release.sgml @@ -1,5 +1,5 @@ <!-- -$Header: /cvsroot/pgsql/doc/src/sgml/release.sgml,v 1.235.2.6 2003/11/15 20:01:20 tgl Exp $ +$Header: /cvsroot/pgsql/doc/src/sgml/release.sgml,v 1.235.2.7 2003/11/16 03:23:57 tgl Exp $ --> <appendix id="release"> @@ -1059,9 +1059,10 @@ $Header: /cvsroot/pgsql/doc/src/sgml/release.sgml,v 1.235.2.6 2003/11/15 20:01:2 <para>Allow cursors outside transactions using <literal>WITH HOLD</literal> (Neil)</para> <para> In previous releases, cursors were removed at the end of the - transaction. Using <literal>WITH HOLD</literal>, the current - release allows cursors to remain readable after the creating - transaction. + transaction that created them. Cursors can now be created with + the <literal>WITH HOLD</literal> option, which allows them to + continue to be accessed after the creating transaction has + committed. </para> </listitem> @@ -1091,16 +1092,18 @@ $Header: /cvsroot/pgsql/doc/src/sgml/release.sgml,v 1.235.2.6 2003/11/15 20:01:2 <para>Properly handle <literal>SCROLL</literal> with cursors, or report an error (Neil)</para> <para> - Certain cursors can not be fetched backwards optimally. By - specifying <literal>SCROLL</literal>, extra work will be - performed to guarantee that the cursor can be fetched in reverse - or random order. + Allowing random access (both forward and backward scrolling) to + some kinds of queries cannot be done without some additional + work. If <literal>SCROLL</literal> is specified when the cursor + is created, this additional work will be performed. Furthermore, + if the cursor has been created with <literal>NO SCROLL</literal>, + no random access is allowed. </para> </listitem> <listitem> <para> - Implement SQL-compatible option <literal>FIRST</>, + Implement SQL-compatible options <literal>FIRST</>, <literal>LAST</>, <literal>ABSOLUTE <replaceable>n</></>, <literal>RELATIVE <replaceable>n</></> for <command>FETCH</command> and <command>MOVE</command> (Tom) @@ -1151,7 +1154,8 @@ $Header: /cvsroot/pgsql/doc/src/sgml/release.sgml,v 1.235.2.6 2003/11/15 20:01:2 <para>Make <command>TRUNCATE</command> transaction-safe (Rod)</para> <para> <command>TRUNCATE</command> can now be used inside a - transaction, and rolled back if the transaction aborts. + transaction. If the transaction aborts, the changes made by the + <command>TRUNCATE</command> are automatically rolled back. </para> </listitem> |