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

Commit 185b744

Browse files
committed
Make one last copy-editing pass over the 9.2 release notes.
Also, set the release date to 2012-09-10, since we're pretty well committed to that now.
1 parent f8f5cf3 commit 185b744

File tree

1 file changed

+60
-33
lines changed

1 file changed

+60
-33
lines changed

doc/src/sgml/release-9.2.sgml

Lines changed: 60 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,7 @@
66

77
<note>
88
<title>Release Date</title>
9-
<simpara>2012-??-??</simpara>
10-
<simpara>CURRENT AS OF 2012-08-21</simpara>
9+
<simpara>2012-09-10</simpara>
1110
</note>
1211

1312
<sect2>
@@ -54,8 +53,9 @@
5453

5554
<listitem>
5655
<para>
57-
Allow <application>pg_basebackup</> to make base backups from
58-
standby servers
56+
Allow <link
57+
linkend="app-pgbasebackup"><application>pg_basebackup</></link>
58+
to make base backups from standby servers
5959
</para>
6060
</listitem>
6161

@@ -291,7 +291,9 @@
291291

292292
<listitem>
293293
<para>
294-
No longer forcibly lowercase procedural language names (Robert Haas)
294+
No longer forcibly lowercase procedural language names in <link
295+
linkend="SQL-CREATEFUNCTION"><command>CREATE FUNCTION</></link>
296+
(Robert Haas)
295297
</para>
296298

297299
<para>
@@ -566,7 +568,7 @@
566568

567569
<listitem>
568570
<para>
569-
Reduce overhead of creating virtual transaction id locks (Robert
571+
Reduce overhead of creating virtual transaction ID locks (Robert
570572
Haas)
571573
</para>
572574
</listitem>
@@ -672,7 +674,8 @@
672674
</para>
673675

674676
<para>
675-
This allows Windows sessions to use more open file descriptors.
677+
This allows Windows sessions to use more open file descriptors than
678+
before.
676679
</para>
677680
</listitem>
678681

@@ -790,7 +793,7 @@
790793
</para>
791794

792795
<para>
793-
This is only enabled when <link
796+
This check is only performed when <link
794797
linkend="guc-constraint-exclusion"><varname>constraint_exclusion</></link>
795798
is <literal>on</literal>.
796799
</para>
@@ -837,7 +840,7 @@
837840
<para>
838841
This change improves selectivity estimation for the array
839842
<literal>&lt;@</literal>, <literal>&amp;&amp;</literal>, and
840-
<literal>@&gt;</literal> (containment and overlaps) array operators.
843+
<literal>@&gt;</literal> operators (array containment and overlaps).
841844
</para>
842845
</listitem>
843846

@@ -988,6 +991,11 @@
988991
Change <quote>unexpected EOF</> messages to <literal>DEBUG1</> level,
989992
except when there is an open transaction (Magnus Hagander)
990993
</para>
994+
995+
<para>
996+
This change reduces log chatter caused by applications that close
997+
database connections ungracefully.
998+
</para>
991999
</listitem>
9921000

9931001
</itemizedlist>
@@ -1044,6 +1052,11 @@
10441052
Silently ignore nonexistent schemas specified in <link
10451053
linkend="guc-search-path"><varname>search_path</></link> (Tom Lane)
10461054
</para>
1055+
1056+
<para>
1057+
This makes it more convenient to use generic path settings, which
1058+
might include some schemas that don't exist in all databases.
1059+
</para>
10471060
</listitem>
10481061

10491062
<listitem>
@@ -1079,7 +1092,8 @@
10791092

10801093
<para>
10811094
The system now remembers whether a <command>SET</command> was
1082-
performed by a superuser.
1095+
performed by a superuser, so that proper privilege checking can be
1096+
done when the extension is loaded.
10831097
</para>
10841098
</listitem>
10851099

@@ -1225,20 +1239,26 @@
12251239

12261240
<listitem>
12271241
<para>
1228-
Allow streaming of WAL files while <link linkend="app-pgbasebackup"><application>pg_basebackup</></link>
1229-
is performing a backup (Magnus Hagander)
1242+
Allow <link
1243+
linkend="app-pgbasebackup"><application>pg_basebackup</></link>
1244+
to make base backups from standby servers (Jun Ishizuka, Fujii Masao)
12301245
</para>
12311246

12321247
<para>
1233-
This allows passing of WAL files to the standby before they are
1234-
discarded on the primary.
1248+
This feature lets the work of making new base backups be off-loaded
1249+
from the primary server.
12351250
</para>
12361251
</listitem>
12371252

12381253
<listitem>
12391254
<para>
1240-
Allow <application>pg_basebackup</> to make base backups from
1241-
standby servers (Jun Ishizuka, Fujii Masao)
1255+
Allow streaming of WAL files while <application>pg_basebackup</>
1256+
is performing a backup (Magnus Hagander)
1257+
</para>
1258+
1259+
<para>
1260+
This allows passing of WAL files to the standby before they are
1261+
discarded on the primary.
12421262
</para>
12431263
</listitem>
12441264

@@ -1253,7 +1273,13 @@
12531273

12541274
<listitem>
12551275
<para>
1256-
Cancel queries if clients get disconnected (Florian Pflug)
1276+
Cancel the running query if the client gets disconnected
1277+
(Florian Pflug)
1278+
</para>
1279+
1280+
<para>
1281+
If the backend detects loss of client connection during a query, it
1282+
will now cancel the query rather than attempting to finish it.
12571283
</para>
12581284
</listitem>
12591285

@@ -1297,7 +1323,7 @@
12971323

12981324
<listitem>
12991325
<para>
1300-
Warn about casts to and from domain types (Robert Haas)
1326+
Warn about creating casts to or from domain types (Robert Haas)
13011327
</para>
13021328

13031329
<para>
@@ -1361,7 +1387,7 @@
13611387

13621388
<listitem>
13631389
<para>
1364-
Improve pretty printing of view definitions (Andrew Dunstan)
1390+
Improve pretty-printing of view definitions (Andrew Dunstan)
13651391
</para>
13661392
</listitem>
13671393

@@ -1426,12 +1452,12 @@
14261452
<para>
14271453
Reduce need to rebuild tables and indexes for certain <link
14281454
linkend="SQL-ALTERTABLE"><command>ALTER TABLE</command></link>
1429-
operations (Noah Misch)
1455+
... <literal>ALTER COLUMN TYPE</> operations (Noah Misch)
14301456
</para>
14311457

14321458
<para>
14331459
Increasing the length limit for a <type>varchar</> or <type>varbit</>
1434-
column, or removing it altogether, no longer requires a table
1460+
column, or removing the limit altogether, no longer requires a table
14351461
rewrite. Similarly, increasing the allowable precision of a
14361462
<type>numeric</> column, or changing a column from constrained
14371463
<type>numeric</> to unconstrained <type>numeric</>, no longer
@@ -1451,7 +1477,7 @@
14511477

14521478
<listitem>
14531479
<para>
1454-
Add <literal>IF EXISTS</> clause to some <command>ALTER</command>
1480+
Add <literal>IF EXISTS</> options to some <command>ALTER</command>
14551481
commands (Pavel Stehule)
14561482
</para>
14571483

@@ -1605,13 +1631,13 @@
16051631

16061632
<listitem>
16071633
<para>
1608-
Allow vacuum to more easily skip pages that cannot be locked
1609-
(Simon Riggs, Robert Haas)
1634+
Allow <link linkend="SQL-VACUUM"><command>VACUUM</></link> to more
1635+
easily skip pages that cannot be locked (Simon Riggs, Robert Haas)
16101636
</para>
16111637

16121638
<para>
1613-
This change should greatly reduce the incidence of vacuum getting
1614-
<quote>stuck</>.
1639+
This change should greatly reduce the incidence of <command>VACUUM</>
1640+
getting <quote>stuck</> waiting for other sessions.
16151641
</para>
16161642
</listitem>
16171643

@@ -1772,7 +1798,7 @@
17721798
</para>
17731799

17741800
<para>
1775-
Previously only superusers could use these functions.
1801+
Previously only superusers were allowed to use these functions.
17761802
</para>
17771803
</listitem>
17781804

@@ -2101,8 +2127,8 @@
21012127

21022128
<listitem>
21032129
<para>
2104-
Allow inclusion of a script file relative to the directory of the
2105-
file from which it was invoked (Gurjeet Singh)
2130+
Allow inclusion of a script file that is named relative to the
2131+
directory of the file from which it was invoked (Gurjeet Singh)
21062132
</para>
21072133

21082134
<para>
@@ -2136,8 +2162,8 @@
21362162
</para>
21372163

21382164
<para>
2139-
Specifically, <envar>PSQL_HISTORY</envar> and
2140-
<envar>PSQLRC</envar> determine these file names if set.
2165+
<envar>PSQL_HISTORY</envar> and <envar>PSQLRC</envar> now
2166+
determine these file names if set.
21412167
</para>
21422168
</listitem>
21432169

@@ -2150,7 +2176,7 @@
21502176

21512177
<listitem>
21522178
<para>
2153-
Make <application>psql</>'s temporary editor files use a
2179+
Name <application>psql</>'s temporary editor files with a
21542180
<filename>.sql</> extension (Peter Eisentraut)
21552181
</para>
21562182

@@ -2166,7 +2192,8 @@
21662192
</para>
21672193

21682194
<para>
2169-
Various shell tools use zero-byte (NUL) separators, e.g. find.
2195+
Various shell tools use zero-byte (NUL) separators,
2196+
e.g. <application>find</>.
21702197
</para>
21712198
</listitem>
21722199

0 commit comments

Comments
 (0)