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

Commit a6f0dc7

Browse files
committed
Update 9.6 release notes through today.
1 parent ea268cd commit a6f0dc7

File tree

2 files changed

+75
-20
lines changed

2 files changed

+75
-20
lines changed

doc/src/sgml/config.sgml

+10-14
Original file line numberDiff line numberDiff line change
@@ -5388,9 +5388,10 @@ COPY postgres_log FROM '/full/path/to/logfile.csv' WITH csv;
53885388
<title>Process Title</title>
53895389

53905390
<para>
5391-
These settings control how the process title as seen
5392-
by <command>ps</command> is modified. See <xref linkend="monitoring-ps">
5393-
for details.
5391+
These settings control how process titles of server processes are
5392+
modified. Process titles are typically viewed using programs like
5393+
<application>ps</> or, on Windows, <application>Process Explorer</>.
5394+
See <xref linkend="monitoring-ps"> for details.
53945395
</para>
53955396

53965397
<variablelist>
@@ -5403,18 +5404,14 @@ COPY postgres_log FROM '/full/path/to/logfile.csv' WITH csv;
54035404
<listitem>
54045405
<para>
54055406
Sets the cluster name that appears in the process title for all
5406-
processes in this cluster. The name can be any string of less than
5407-
<symbol>NAMEDATALEN</> characters (64 characters in a standard
5407+
server processes in this cluster. The name can be any string of less
5408+
than <symbol>NAMEDATALEN</> characters (64 characters in a standard
54085409
build). Only printable ASCII characters may be used in the
54095410
<varname>cluster_name</varname> value. Other characters will be
54105411
replaced with question marks (<literal>?</literal>). No name is shown
54115412
if this parameter is set to the empty string <literal>''</> (which is
54125413
the default). This parameter can only be set at server start.
54135414
</para>
5414-
<para>
5415-
The process title is typically viewed using programs like
5416-
<application>ps</> or, on Windows, <application>Process Explorer</>.
5417-
</para>
54185415
</listitem>
54195416
</varlistentry>
54205417

@@ -5427,11 +5424,10 @@ COPY postgres_log FROM '/full/path/to/logfile.csv' WITH csv;
54275424
<listitem>
54285425
<para>
54295426
Enables updating of the process title every time a new SQL command
5430-
is received by the server. The process title is typically viewed
5431-
by the <command>ps</> command,
5432-
or in Windows by using the <application>Process Explorer</>.
5433-
This value defaults to off on Windows platforms due to the
5434-
platform's significant overhead for updating the process title.
5427+
is received by the server.
5428+
This setting defaults to <literal>on</> on most platforms, but it
5429+
defaults to <literal>off</> on Windows due to that platform's larger
5430+
overhead for updating the process title.
54355431
Only superusers can change this setting.
54365432
</para>
54375433
</listitem>

doc/src/sgml/release-9.6.sgml

+65-6
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<note>
88
<title>Release Date</title>
99
<simpara>2016-??-??</simpara>
10-
<simpara>Current as of 2016-08-08 (commit 34927b292)</simpara>
10+
<simpara>Current as of 2016-08-27 (commit b9fe6cbc8)</simpara>
1111
</note>
1212

1313
<sect2>
@@ -348,6 +348,7 @@ This commit is also listed under libpq and psql
348348
2016-04-27 [59eb55127] Fix EXPLAIN VERBOSE output for parallel aggregate.
349349
2016-06-09 [c9ce4a1c6] Eliminate "parallel degree" terminology.
350350
2016-06-16 [75be66464] Invent min_parallel_relation_size GUC to replace a hard-
351+
2016-08-16 [f85b1a841] Disable parallel query by default.
351352
-->
352353
<para>
353354
Parallel queries (Robert Haas, Amit Kapila, David Rowley,
@@ -365,9 +366,11 @@ This commit is also listed under libpq and psql
365366
</para>
366367

367368
<para>
368-
Use of parallel query execution can be controlled
369-
through the new configuration parameters <xref
370-
linkend="guc-max-parallel-workers-per-gather">,
369+
Parallel query execution is not (yet) enabled by default.
370+
To allow it, set the new configuration
371+
parameter <xref linkend="guc-max-parallel-workers-per-gather"> to a
372+
value larger than zero. Additional control over use of parallelism
373+
is available through other new configuration parameters
371374
<xref linkend="guc-force-parallel-mode">,
372375
<xref linkend="guc-parallel-setup-cost">, <xref
373376
linkend="guc-parallel-tuple-cost">, and <xref
@@ -1030,6 +1033,22 @@ This commit is also listed under libpq and psql
10301033
</para>
10311034
</listitem>
10321035

1036+
<listitem>
1037+
<!--
1038+
2016-08-17 [9b33c7e80] Disable update_process_title by default on Windows
1039+
-->
1040+
<para>
1041+
Disable <xref linkend="guc-update-process-title"> by default on
1042+
Windows (Takayuki Tsunakawa)
1043+
</para>
1044+
1045+
<para>
1046+
The overhead of updating the process title is much larger on Windows
1047+
than most other platforms, and it is also less useful to do it since
1048+
most Windows users do not have tools that can display process titles.
1049+
</para>
1050+
</listitem>
1051+
10331052
</itemizedlist>
10341053

10351054
</sect4>
@@ -2431,6 +2450,22 @@ XXX this is pending backpatch, may need to remove
24312450

24322451
<listitem>
24332452
<!--
2453+
2016-08-26 [e796d0aba] Add a nonlocalized version of the severity field to clie
2454+
-->
2455+
<para>
2456+
Add a nonlocalized version of the severity field in error and notice
2457+
messages (Tom Lane)
2458+
</para>
2459+
2460+
<para>
2461+
This change allows client code to determine severity of an error or
2462+
notice without having to worry about localized variants of the
2463+
severity strings.
2464+
</para>
2465+
</listitem>
2466+
2467+
<listitem>
2468+
<!--
24342469
2015-09-05 [0426f349e] Rearrange the handling of error context reports.
24352470
This commit is also listed under psql and PL/pgSQL
24362471
-->
@@ -2957,6 +2992,25 @@ This commit is also listed under libpq and PL/pgSQL
29572992

29582993
<listitem>
29592994
<!--
2995+
2016-08-27 [b9fe6cbc8] Add macros to make AllocSetContextCreate() calls simpler
2996+
-->
2997+
<para>
2998+
Add macros to make <function>AllocSetContextCreate()</> calls simpler
2999+
and safer (Tom Lane)
3000+
</para>
3001+
3002+
<para>
3003+
Writing out the individual sizing parameters for a memory context
3004+
is now deprecated in favor of using one of the new
3005+
macros <symbol>ALLOCSET_DEFAULT_SIZES</>,
3006+
<symbol>ALLOCSET_SMALL_SIZES</>,
3007+
or <symbol>ALLOCSET_START_SMALL_SIZES</>.
3008+
Existing code continues to work, however.
3009+
</para>
3010+
</listitem>
3011+
3012+
<listitem>
3013+
<!--
29603014
2015-08-05 [de6fd1c89] Rely on inline functions even if that causes warnings in
29613015
-->
29623016
<para>
@@ -3038,19 +3092,24 @@ This commit is also listed under libpq and PL/pgSQL
30383092
<!--
30393093
2016-01-17 [65c5fcd35] Restructure index access method API to hide most of it a
30403094
2016-01-21 [be44ed27b] Improve index AMs' opclass validation procedures.
3095+
2016-08-13 [ed0097e4f] Add SQL-accessible functions for inspecting index AM pro
30413096
-->
30423097
<para>
30433098
Restructure index access method <acronym>API</> to hide most of
3044-
it at the <application>C</> level (Alexander Korotkov)
3099+
it at the <application>C</> level (Alexander Korotkov, Andrew Gierth)
30453100
</para>
30463101

30473102
<para>
30483103
This change modernizes the index <acronym>AM API</> to look more
30493104
like the designs we have adopted for foreign data wrappers and
30503105
tablesample handlers. This simplifies the <application>C</> code
3051-
and should make it more feasible to define index access methods in
3106+
and makes it much more practical to define index access methods in
30523107
installable extensions. A consequence is that most of the columns
30533108
of the <structname>pg_am</> system catalog have disappeared.
3109+
New <link linkend="functions-info-catalog-table">inspection
3110+
functions</link> have been added to allow SQL queries to determine
3111+
index AM properties that used to be discoverable
3112+
from <structname>pg_am</>.
30543113
</para>
30553114
</listitem>
30563115

0 commit comments

Comments
 (0)