1
- <!-- $PostgreSQL: pgsql/doc/src/sgml/release.sgml,v 1.456 2006/09/25 15:31:50 tgl Exp $ -->
1
+ <!-- $PostgreSQL: pgsql/doc/src/sgml/release.sgml,v 1.457 2006/09/25 15:35:28 neilc Exp $ -->
2
2
<!--
3
3
4
4
Typical markup:
@@ -95,7 +95,7 @@ For new features, add links to the documentation sections.
95
95
96
96
<listitem>
97
97
<para>
98
- Query enhancements including <literal>RETURNING</literal>
98
+ Query language enhancements including <literal>RETURNING</literal>
99
99
values, multi-<literal>VALUES</literal>, support, and
100
100
self-joins for <command>DELETE</command>
101
101
</para>
@@ -111,7 +111,7 @@ For new features, add links to the documentation sections.
111
111
<para>
112
112
Index creation without blocking concurrent
113
113
<command>INSERT</>/<command>UPDATE</>/<command>DELETE</>
114
- commands
114
+ operations
115
115
</para>
116
116
</listitem>
117
117
@@ -123,7 +123,7 @@ For new features, add links to the documentation sections.
123
123
124
124
<listitem>
125
125
<para>
126
- Array and aggregate improvements, including SQL:2003
126
+ Array and aggregate improvements, including SQL:2003
127
127
statistical functions
128
128
</para>
129
129
</listitem>
@@ -262,8 +262,8 @@ For new features, add links to the documentation sections.
262
262
263
263
<listitem>
264
264
<para>
265
- Make command-line options of postmaster and postgres
266
- identical (Peter)
265
+ Make command-line options of <application> postmaster</> and
266
+ <application>postgres</> identical (Peter)
267
267
</para>
268
268
269
269
<para>
@@ -352,13 +352,13 @@ For new features, add links to the documentation sections.
352
352
<listitem>
353
353
<para>
354
354
Change <application>libpq</> <function>PQgetssl()</> to
355
- return a <literal>void*</>, rather than <literal>SSL*</>
355
+ return a <literal>void *</>, rather than <literal>SSL *</>
356
356
(Martijn van Oosterhout)
357
357
</para>
358
358
359
359
<para>
360
- This allows applications to use the function without
361
- <acronym>SSL</> headers.
360
+ This allows applications to use the function without including
361
+ the OpenSSL headers.
362
362
</para>
363
363
</listitem>
364
364
@@ -786,7 +786,7 @@ For new features, add links to the documentation sections.
786
786
787
787
<listitem>
788
788
<para>
789
- Add support for multi -row <literal>VALUES</> clauses as
789
+ Add support for multiple -row <literal>VALUES</> clauses as
790
790
part of <command>INSERT</> and <command>SELECT</> statements,
791
791
per SQL standard (Joe, Tom)
792
792
</para>
@@ -985,8 +985,7 @@ For new features, add links to the documentation sections.
985
985
</para>
986
986
987
987
<para>
988
- This allows the tablespace to be specified for the new
989
- table.
988
+ This allows a tablespace to be specified for the new table.
990
989
</para>
991
990
</listitem>
992
991
@@ -1166,8 +1165,8 @@ For new features, add links to the documentation sections.
1166
1165
</para>
1167
1166
1168
1167
<para>
1169
- This is a new locking API compared to what used to be in /contrib.
1170
- The /contrib code is now on pgfoundry.
1168
+ This is a new locking API that is similar to what used to be
1169
+ in /contrib. The /contrib code is now on pgfoundry.
1171
1170
</para>
1172
1171
</listitem>
1173
1172
@@ -1192,8 +1191,8 @@ For new features, add links to the documentation sections.
1192
1191
1193
1192
<listitem>
1194
1193
<para>
1195
- Allow <command>VACUUM</> to expire rows without being
1196
- affected by other concurrent <command>VACUUM</>s (Hannu
1194
+ Allow <command>VACUUM</> to expire rows without being affected
1195
+ by other concurrent <command>VACUUM</> operations (Hannu
1197
1196
Krossing, Alvaro, Tom)
1198
1197
</para>
1199
1198
</listitem>
@@ -1252,7 +1251,7 @@ For new features, add links to the documentation sections.
1252
1251
</para>
1253
1252
1254
1253
<para>
1255
- The file name is controlled by GUC variable
1254
+ The file name is controlled by the GUC variable
1256
1255
<varname>timezone_abbreviations</>.
1257
1256
</para>
1258
1257
</listitem>
@@ -1380,7 +1379,7 @@ For new features, add links to the documentation sections.
1380
1379
<function>covar_pop()</>, <function>regr_avgx()</>,
1381
1380
<function>regr_avgy()</>, <function>regr_sxy()</>,
1382
1381
<function>regr_sxx()</>, <function>regr_syy()</>,
1383
- <function>regr_count()</>
1382
+ <function>regr_count()</>.
1384
1383
</para>
1385
1384
</listitem>
1386
1385
@@ -1506,7 +1505,7 @@ For new features, add links to the documentation sections.
1506
1505
</para>
1507
1506
1508
1507
<para>
1509
- <literal>relname</> is kept but now deprecated
1508
+ <literal>relname</> is kept but now deprecated.
1510
1509
</para>
1511
1510
</listitem>
1512
1511
@@ -1636,12 +1635,15 @@ For new features, add links to the documentation sections.
1636
1635
1637
1636
<listitem>
1638
1637
<para>
1639
- Support retrieving <command>SELECT</> results in batches
1640
- using a cursor (Chris Mair)
1638
+ Support for automatically retrieving <command>SELECT</>
1639
+ results in batches using a cursor (Chris Mair)
1641
1640
</para>
1642
1641
1643
1642
<para>
1644
- This is accomplished using <command>\set FETCH_COUNT</>.
1643
+ This is accomplished using <command>\set FETCH_COUNT</>. This
1644
+ feature allows large result sets to be manipulated in
1645
+ <application>psql</> without needing to buffer the entire
1646
+ result set in memory.
1645
1647
</para>
1646
1648
</listitem>
1647
1649
@@ -1672,8 +1674,8 @@ For new features, add links to the documentation sections.
1672
1674
1673
1675
<listitem>
1674
1676
<para>
1675
- Make the line counter 64-bit so it can handle files over
1676
- two billion lines (David Fetter)
1677
+ Make the line counter 64-bit so it can handle files with more
1678
+ than two billion lines (David Fetter)
1677
1679
</para>
1678
1680
</listitem>
1679
1681
0 commit comments