Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 51eba61

Browse files
committed
More release-notes copy editing, from Neil Conway.
1 parent 3e9a86a commit 51eba61

File tree

1 file changed

+14
-10
lines changed

1 file changed

+14
-10
lines changed

doc/src/sgml/release.sgml

Lines changed: 14 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!--
2-
$Header: /cvsroot/pgsql/doc/src/sgml/release.sgml,v 1.242 2003/11/15 20:01:11 tgl Exp $
2+
$Header: /cvsroot/pgsql/doc/src/sgml/release.sgml,v 1.243 2003/11/16 03:23:48 tgl Exp $
33
-->
44

55
<appendix id="release">
@@ -1059,9 +1059,10 @@ $Header: /cvsroot/pgsql/doc/src/sgml/release.sgml,v 1.242 2003/11/15 20:01:11 tg
10591059
<para>Allow cursors outside transactions using <literal>WITH HOLD</literal> (Neil)</para>
10601060
<para>
10611061
In previous releases, cursors were removed at the end of the
1062-
transaction. Using <literal>WITH HOLD</literal>, the current
1063-
release allows cursors to remain readable after the creating
1064-
transaction.
1062+
transaction that created them. Cursors can now be created with
1063+
the <literal>WITH HOLD</literal> option, which allows them to
1064+
continue to be accessed after the creating transaction has
1065+
committed.
10651066
</para>
10661067
</listitem>
10671068

@@ -1091,16 +1092,18 @@ $Header: /cvsroot/pgsql/doc/src/sgml/release.sgml,v 1.242 2003/11/15 20:01:11 tg
10911092
<para>Properly handle <literal>SCROLL</literal> with cursors, or
10921093
report an error (Neil)</para>
10931094
<para>
1094-
Certain cursors can not be fetched backwards optimally. By
1095-
specifying <literal>SCROLL</literal>, extra work will be
1096-
performed to guarantee that the cursor can be fetched in reverse
1097-
or random order.
1095+
Allowing random access (both forward and backward scrolling) to
1096+
some kinds of queries cannot be done without some additional
1097+
work. If <literal>SCROLL</literal> is specified when the cursor
1098+
is created, this additional work will be performed. Furthermore,
1099+
if the cursor has been created with <literal>NO SCROLL</literal>,
1100+
no random access is allowed.
10981101
</para>
10991102
</listitem>
11001103

11011104
<listitem>
11021105
<para>
1103-
Implement SQL-compatible option <literal>FIRST</>,
1106+
Implement SQL-compatible options <literal>FIRST</>,
11041107
<literal>LAST</>, <literal>ABSOLUTE <replaceable>n</></>,
11051108
<literal>RELATIVE <replaceable>n</></> for
11061109
<command>FETCH</command> and <command>MOVE</command> (Tom)
@@ -1151,7 +1154,8 @@ $Header: /cvsroot/pgsql/doc/src/sgml/release.sgml,v 1.242 2003/11/15 20:01:11 tg
11511154
<para>Make <command>TRUNCATE</command> transaction-safe (Rod)</para>
11521155
<para>
11531156
<command>TRUNCATE</command> can now be used inside a
1154-
transaction, and rolled back if the transaction aborts.
1157+
transaction. If the transaction aborts, the changes made by the
1158+
<command>TRUNCATE</command> are automatically rolled back.
11551159
</para>
11561160
</listitem>
11571161

0 commit comments

Comments
 (0)