Commit f49f8de0 authored by Tom Lane's avatar Tom Lane

Update 9.3 release notes.

Some corrections, a lot of copy-editing.

Set projected release date as 2013-09-09.
parent abd3f8ca
...@@ -6,14 +6,14 @@ ...@@ -6,14 +6,14 @@
<note> <note>
<title>Release Date</title> <title>Release Date</title>
<simpara>2013-XX-XX, CURRENT AS OF 2013-08-16</simpara> <simpara>2013-09-09</simpara>
</note> </note>
<sect2> <sect2>
<title>Overview</title> <title>Overview</title>
<para> <para>
Major enhancements include: Major enhancements in <productname>PostgreSQL</> 9.3 include:
</para> </para>
<!-- This list duplicates items below, but without authors or details--> <!-- This list duplicates items below, but without authors or details-->
...@@ -36,9 +36,9 @@ ...@@ -36,9 +36,9 @@
<listitem> <listitem>
<para> <para>
Many <type>JSON</> improvements, including the addition of <link Add many features for the <type>JSON</> data type,
linkend="functions-json">operators and functions</link> to extract including <link linkend="functions-json">operators and functions</link>
values from <type>JSON</> data strings to extract elements from <type>JSON</> values
</para> </para>
</listitem> </listitem>
...@@ -60,8 +60,9 @@ ...@@ -60,8 +60,9 @@
<listitem> <listitem>
<para> <para>
Add a <productname>Postgres</> <link linkend="postgres-fdw">foreign Add a <link linkend="postgres-fdw"><productname>Postgres</> foreign
data wrapper</link> contrib module data wrapper</link> to allow access to
other <productname>Postgres</> servers
</para> </para>
</listitem> </listitem>
...@@ -81,25 +82,17 @@ ...@@ -81,25 +82,17 @@
<listitem> <listitem>
<para> <para>
Allow a streaming replication standby to <link Prevent non-key-field row updates from blocking foreign key checks
linkend="protocol-replication">follow a timeline switch</link>,
and faster failover
</para> </para>
</listitem> </listitem>
<listitem> <listitem>
<para> <para>
Dramatically reduce System V <link linkend="sysvipc">shared Greatly reduce System V <link linkend="sysvipc">shared
memory</link> requirements memory</link> requirements
</para> </para>
</listitem> </listitem>
<listitem>
<para>
Prevent non-key-field row updates from locking foreign key rows
</para>
</listitem>
</itemizedlist> </itemizedlist>
<para> <para>
...@@ -158,7 +151,7 @@ ...@@ -158,7 +151,7 @@
<para> <para>
Users who have set <link Users who have set <link
linkend="guc-work-mem"><varname>work_mem</></link> based on the linkend="guc-work-mem"><varname>work_mem</></link> based on the
previous behavior should revisit that setting. previous behavior may need to revisit that setting.
</para> </para>
</listitem> </listitem>
...@@ -173,76 +166,112 @@ ...@@ -173,76 +166,112 @@
<listitem> <listitem>
<para> <para>
Throw an error if expiring tuple is again updated or deleted (Kevin Grittner) Throw an error if a tuple to be updated or deleted has already been
DETAILS? updated or deleted by a <literal>BEFORE</> trigger (Kevin Grittner)
</para>
<para>
Formerly, the originally-intended update was silently skipped,
resulting in logical inconsistency since the trigger might have
propagated data to other places based on the intended update.
Now an error is thrown to prevent the inconsistent results from being
committed. If this change affects your application, the best solution
is usually to move the data-propagation actions to
an <literal>AFTER</> trigger.
</para>
<para>
This error will also be thrown if a query invokes a volatile function
that modifies rows that are later modified by the query itself.
Such cases likewise previously resulted in silently skipping updates.
</para> </para>
</listitem> </listitem>
<listitem> <listitem>
<para> <para>
Change <link linkend="SQL-CREATETABLE"><literal>ON UPDATE Change multicolumn <link linkend="SQL-CREATETABLE"><literal>ON UPDATE
SET NULL/SET DEFAULT</></link> foreign key actions to affect SET NULL/SET DEFAULT</></link> foreign key actions to affect
all referenced columns, not just those referenced in the all columns of the constraint, not just those changed in the
<command>UPDATE</> (Tom Lane) <command>UPDATE</> (Tom Lane)
</para> </para>
<para> <para>
Previously only columns referenced in the <command>UPDATE</> were Previously, we would set only those referencing columns that
set to null or <literal>DEFAULT</>. correspond to referenced columns that were changed by
the <command>UPDATE</>. This was what was required by SQL-92,
but more recent editions of the SQL standard specify the new behavior.
</para> </para>
</listitem> </listitem>
<listitem> <listitem>
<para> <para>
Internally store default foreign key matches (non-<literal>FULL</>, Force cached plans to be replanned if the <link
non-<literal>PARTIAL</>) as <quote>simple</> (Tom Lane) linkend="guc-search-path"><varname>search_path</></link> changes
(Tom Lane)
</para> </para>
<para> <para>
These were previously stored as "&lt;unspecified&gt;". Previously, cached plans already generated in the current session were
This changes the value stored in system column <link not redone if the query was re-executed with a
linkend="catalog-pg-constraint"><structname>pg_constraint.confmatchtype</></link>. new <varname>search_path</> setting, resulting in surprising behavior.
</para> </para>
</listitem> </listitem>
<listitem> <listitem>
<para> <para>
Store <link linkend="wal"><acronym>WAL</></link> in a continuous Fix <link
stream, rather than skipping the last 16MB segment every 4GB linkend="functions-formatting-table"><function>to_number()</></link>
(Heikki Linnakangas) to properly handle a period used as a thousands separator (Tom Lane)
</para> </para>
<para> <para>
Previously, <acronym>WAL</> files with names ending in <literal>FF</> Previously, a period was considered to be a decimal point even when
were not used. If you have <acronym>WAL</> backup or restore scripts the locale says it isn't and the <literal>D</> format code is used to
that took that skipping into account, they will need to be adjusted. specify use of the locale-specific decimal point. This resulted in
wrong answers if <literal>FM</> format was also used.
</para> </para>
</listitem> </listitem>
<listitem> <listitem>
<para> <para>
Allow <link Fix <literal>STRICT</> non-set-returning functions that have
linkend="functions-formatting-table"><function>to_char()</></link> set-returning functions in their arguments to properly return null
to properly handle <literal>D</> (locale-specific decimal point) and rows (Tom Lane)
<literal>FM</> (fill mode) specifications in locales where a
period is a group separator and not a decimal point (Tom Lane)
</para> </para>
<para> <para>
Previously, a period group separator would be misinterpreted as A null value passed to the strict function should result in a null
a decimal point in such locales. output, but instead, that output row was suppressed entirely.
</para> </para>
</listitem> </listitem>
<listitem> <listitem>
<para> <para>
Fix <literal>STRICT</> non-set-returning functions that take Store <link linkend="wal"><acronym>WAL</></link> in a continuous
set-returning functions as arguments to properly return null stream, rather than skipping the last 16MB segment every 4GB
rows (Tom Lane) (Heikki Linnakangas)
</para>
<para>
Previously, <acronym>WAL</> files with names ending in <literal>FF</>
were not used because of this skipping. If you have <acronym>WAL</>
backup or restore scripts that took this behavior into account, they
will need to be adjusted.
</para>
</listitem>
<listitem>
<para>
In <link
linkend="catalog-pg-constraint"><structname>pg_constraint.confmatchtype</></link>,
store the default foreign key match type (non-<literal>FULL</>,
non-<literal>PARTIAL</>) as <literal>s</> for <quote>simple</>
(Tom Lane)
</para> </para>
<para> <para>
Previously, rows with null values were suppressed. Previously this case was represented by <literal>u</>
for <quote>unspecified</>.
</para> </para>
</listitem> </listitem>
...@@ -271,36 +300,28 @@ ...@@ -271,36 +300,28 @@
<listitem> <listitem>
<para> <para>
Prevent non-key-field row updates from locking foreign key rows Prevent non-key-field row updates from blocking foreign key checks
(&Aacute;lvaro Herrera, Noah Misch, Andres Freund, Alexander (&Aacute;lvaro Herrera, Noah Misch, Andres Freund, Alexander
Shulgin, Marti Raudsepp) Shulgin, Marti Raudsepp, Alexander Shulgin)
</para> </para>
<para> <para>
This improves concurrency and reduces the probability of deadlocks. This change improves concurrency and reduces the probability of
<command>UPDATE</>s on non-key columns use the new <command>SELECT deadlocks when updating tables involved in a foreign-key constraint.
FOR NO KEY UPDATE</> lock type, and foreign key checks use the <command>UPDATE</>s that do not change any columns referenced in a
new <command>SELECT FOR KEY SHARE</> lock mode. foreign key now take the new <literal>NO KEY UPDATE</> lock mode on
the row, while foreign key checks use the new <literal>KEY SHARE</>
lock mode, which does not conflict with <literal>NO KEY UPDATE</>.
So there is no blocking unless a foreign-key column is changed.
</para> </para>
</listitem> </listitem>
<listitem> <listitem>
<para> <para>
Add configuration variable <link Add configuration variable <link
linkend="guc-lock-timeout"><varname>lock_timeout</></link> to limit linkend="guc-lock-timeout"><varname>lock_timeout</></link> to
lock wait duration (Zolt&aacute;n B&ouml;sz&ouml;rm&eacute;nyi) allow limiting how long a session will wait to acquire any one lock
</para> (Zolt&aacute;n B&ouml;sz&ouml;rm&eacute;nyi)
</listitem>
<listitem>
<para>
Add cache of local locks (Jeff Janes)
</para>
<para>
This speeds lock release at statement completion in
transactions that hold many locks; it is particularly useful
for <application>pg_dump</> and the restoration of such dumps.
</para> </para>
</listitem> </listitem>
...@@ -315,21 +336,29 @@ ...@@ -315,21 +336,29 @@
<listitem> <listitem>
<para> <para>
Add <link linkend="rangetypes-indexing"><type>SP-GiST</></link> Add <link linkend="rangetypes-indexing"><acronym>SP-GiST</></link>
support for range data types (Alexander Korotkov) support for range data types (Alexander Korotkov)
</para> </para>
</listitem> </listitem>
<listitem> <listitem>
<para> <para>
Allow unlogged <link linkend="SPGiST"><type>GiST</></link> indexes Allow <link linkend="GiST"><acronym>GiST</></link> indexes to be
(Jeevan Chalke) unlogged (Jeevan Chalke)
</para>
</listitem>
<listitem>
<para>
Improve performance of <acronym>GiST</> index insertion by randomizing
the choice of which page to descend to when there are multiple equally
good alternatives (Heikki Linnakangas)
</para> </para>
</listitem> </listitem>
<listitem> <listitem>
<para> <para>
Improve concurrency of hash indexes (Robert Haas) Improve concurrency of hash index operations (Robert Haas)
</para> </para>
</listitem> </listitem>
...@@ -344,21 +373,37 @@ ...@@ -344,21 +373,37 @@
<listitem> <listitem>
<para> <para>
Collect and use histograms for <link linkend="rangetypes">range Collect and use histograms of upper and lower bounds, as well as range
types</link> (Alexander Korotkov) lengths, for <link linkend="rangetypes">range types</link>
(Alexander Korotkov)
</para>
</listitem>
<listitem>
<para>
Improve optimizer's cost estimation for index access (Tom Lane)
</para>
</listitem>
<listitem>
<para>
Improve optimizer's hash table size estimate for
doing <literal>DISTINCT</> via hash aggregation (Tom Lane)
</para> </para>
</listitem> </listitem>
<listitem> <listitem>
<para> <para>
Reduce optimizer overhead by discarding plans with unneeded cheaper Suppress no-op Result and Limit plan nodes
startup costs (Tom Lane) (Kyotaro Horiguchi, Amit Kapila, Tom Lane)
</para> </para>
</listitem> </listitem>
<listitem> <listitem>
<para> <para>
Improve optimizer cost estimation for index access (Tom Lane) Reduce optimizer overhead by not keeping plans on the basis of cheap
startup cost when the optimizer only cares about total cost overall
(Tom Lane)
</para> </para>
</listitem> </listitem>
...@@ -374,7 +419,7 @@ ...@@ -374,7 +419,7 @@
<listitem> <listitem>
<para> <para>
Add <link linkend="SQL-COPY"><command>COPY FREEZE</></link> Add <link linkend="SQL-COPY"><command>COPY FREEZE</></link>
option to avoid the overhead of marking tuples as committed later option to avoid the overhead of marking tuples as frozen later
(Simon Riggs, Jeff Davis) (Simon Riggs, Jeff Davis)
</para> </para>
</listitem> </listitem>
...@@ -389,53 +434,65 @@ ...@@ -389,53 +434,65 @@
<listitem> <listitem>
<para> <para>
Improve grouping of sessions waiting for <link Improve synchronization of sessions waiting for <link
linkend="guc-commit-delay"><varname>commit_delay</></link> linkend="guc-commit-delay"><varname>commit_delay</></link>
(Peter Geoghegan) (Peter Geoghegan)
</para> </para>
<para> <para>
This improves the usefulness and behavior of This greatly improves the usefulness of <varname>commit_delay</>.
<varname>commit_delay</>.
</para> </para>
</listitem> </listitem>
<listitem> <listitem>
<para> <para>
Improve performance for transactions creating, rebuilding, or Improve performance of the <link
dropping many relations (Jeff Janes, Tomas Vondra) linkend="SQL-CREATETABLE"><command>CREATE TEMPORARY TABLE ... ON
COMMIT DELETE ROWS</></link> option by not truncating such temporary
tables in transactions that haven't touched any temporary tables
(Heikki Linnakangas)
</para> </para>
</listitem> </listitem>
<listitem> <listitem>
<para> <para>
Improve performance of the <link Make vacuum recheck visibility after it has removed expired tuples
linkend="SQL-CREATETABLE"><command>CREATE TEMPORARY TABLE ... ON (Pavan Deolasee)
COMMIT DELETE ROWS</></link> clause by only issuing delete if </para>
the temporary table was accessed (Heikki Linnakangas)
<para>
This increases the chance of a page being marked as all-visible.
</para> </para>
</listitem> </listitem>
<listitem> <listitem>
<para> <para>
Have vacuum recheck visibility after it has removed expired tuples Add per-resource-owner lock caches (Jeff Janes)
(Pavan Deolasee)
</para> </para>
<para> <para>
This increases the chance of a page being marked as all-visible. This speeds up lock bookkeeping at statement completion in
multi-statement transactions that hold many locks; it is particularly
useful for <application>pg_dump</>.
</para> </para>
</listitem> </listitem>
<listitem> <listitem>
<para> <para>
Split the <link Avoid scanning the entire relation cache at commit of a transaction
linkend="guc-stats-temp-directory"><filename>pg_stat_tmp</></link> that creates a new relation (Jeff Janes)
statistics file into per-database and global files (Tomas Vondra) </para>
<para>
This speeds up sessions that create many tables in successive
small transactions, such as a <application>pg_restore</> run.
</para> </para>
</listitem>
<listitem>
<para> <para>
This reduces the I/O overhead for statistics tracking. Improve performance of transactions that drop many relations
(Tomas Vondra)
</para> </para>
</listitem> </listitem>
...@@ -463,27 +520,38 @@ ...@@ -463,27 +520,38 @@
<listitem> <listitem>
<para> <para>
Allow <link Split the <link linkend="monitoring-stats">statistics collector's</link>
linkend="functions-admin-signal-table"><function>pg_terminate_backend()</></link> data file into separate global and per-database files (Tomas Vondra)
to terminate other backends with the same role (Dan Farina) </para>
<para>
This reduces the I/O required for statistics tracking.
</para>
</listitem>
<listitem>
<para>
Fix the statistics collector to operate properly in cases where the
system clock goes backwards (Tom Lane)
</para> </para>
<para> <para>
Previously, only superusers could terminate other sessions. Previously, statistics collection would stop until the time again
reached the latest time previously recorded.
</para> </para>
</listitem> </listitem>
<listitem> <listitem>
<para> <para>
Allow the <link Emit an informative message to postmaster standard error when we
linkend="runtime-config-statistics-collector">statistics are about to stop logging there
collector</link> to operate properly in cases where the system (Tom Lane)
clock goes backwards (Tom Lane)
</para> </para>
<para> <para>
Previously statistics collection would stop until the time again This should help reduce user confusion about where to look for log
reached the previously-stored latest time. output in common configurations that log to standard error only during
postmaster startup.
</para> </para>
</listitem> </listitem>
...@@ -496,6 +564,15 @@ ...@@ -496,6 +564,15 @@
<itemizedlist> <itemizedlist>
<listitem>
<para>
When an authentication failure occurs, log the relevant
<link linkend="auth-pg-hba-conf"><filename>pg_hba.conf</></link>
line, to ease debugging of unintended failures
(Magnus Hagander)
</para>
</listitem>
<listitem> <listitem>
<para> <para>
Improve <link linkend="auth-ldap"><acronym>LDAP</></link> error Improve <link linkend="auth-ldap"><acronym>LDAP</></link> error
...@@ -505,8 +582,8 @@ ...@@ -505,8 +582,8 @@
<listitem> <listitem>
<para> <para>
Add support for <acronym>LDAP</> authentication to be specified Add support for specifying <acronym>LDAP</> authentication parameters
in <acronym>URL</> format (Peter Eisentraut) in <acronym>URL</> format, per RFC 4516 (Peter Eisentraut)
</para> </para>
</listitem> </listitem>
...@@ -519,7 +596,7 @@ ...@@ -519,7 +596,7 @@
</para> </para>
<para> <para>
It is assumed <literal>DEFAULT</> is more appropriate cipher set. This should yield a more appropriate SSL cipher set.
</para> </para>
</listitem> </listitem>
...@@ -531,9 +608,7 @@ ...@@ -531,9 +608,7 @@
</para> </para>
<para> <para>
This is similar to how <link This is similar to how <filename>pg_hba.conf</> is processed.
linkend="auth-pg-hba-conf"><filename>pg_hba.conf</></link>
is processed.
</para> </para>
</listitem> </listitem>
...@@ -548,14 +623,14 @@ ...@@ -548,14 +623,14 @@
<listitem> <listitem>
<para> <para>
Dramatically reduce System V <link linkend="sysvipc">shared Greatly reduce System V <link linkend="sysvipc">shared
memory</link> requirements (Robert Haas) memory</link> requirements (Robert Haas)
</para> </para>
<para> <para>
Instead, on Unix-like systems, <function>mmap()</> is used for On Unix-like systems, <function>mmap()</> is now used for most
shared memory. For most users, this will eliminate the need to of <productname>PostgreSQL</>'s shared memory. For most users, this
adjust kernel parameters for shared memory. will eliminate any need to adjust kernel parameters for shared memory.
</para> </para>
</listitem> </listitem>
...@@ -604,7 +679,8 @@ ...@@ -604,7 +679,8 @@
<listitem> <listitem>
<para> <para>
Remove the <link linkend="guc-external-pid-file">external Remove the <link linkend="guc-external-pid-file">external
<acronym>PID</> file</link> on postmaster exit (Peter Eisentraut) <acronym>PID</> file</link>, if any, on postmaster exit
(Peter Eisentraut)
</para> </para>
</listitem> </listitem>
...@@ -627,9 +703,9 @@ ...@@ -627,9 +703,9 @@
</para> </para>
<para> <para>
This allows streaming standbys to feed from newly-promoted slaves. This allows streaming standby servers to receive WAL data from a slave
Previously slaves required access to a <acronym>WAL</> archive directory to newly promoted to master status. Previously, other standbys would
accomplish this. require a resync to begin following the new master.
</para> </para>
</listitem> </listitem>
...@@ -670,8 +746,8 @@ ...@@ -670,8 +746,8 @@
</para> </para>
<para> <para>
This information is useful for determining the <acronym>WAL</> This information is useful for determining which <acronym>WAL</>
files needed for restore. files are needed for restore.
</para> </para>
</listitem> </listitem>
...@@ -693,10 +769,10 @@ ...@@ -693,10 +769,10 @@
<listitem> <listitem>
<para> <para>
Have <link Make <link
linkend="app-pgbasebackup"><application>pg_basebackup</></link> linkend="app-pgbasebackup"><application>pg_basebackup</></link>
<option>--write-recovery-conf</> output a <option>--write-recovery-conf</> output a
minimal <filename>recovery.conf</> (Zolt&aacute;n minimal <filename>recovery.conf</> file (Zolt&aacute;n
B&ouml;sz&ouml;rm&eacute;nyi, Magnus Hagander) B&ouml;sz&ouml;rm&eacute;nyi, Magnus Hagander)
</para> </para>
...@@ -720,7 +796,7 @@ ...@@ -720,7 +796,7 @@
<para> <para>
Add <link Add <link
linkend="guc-wal-receiver-timeout"><varname>wal_receiver_timeout</></link> linkend="guc-wal-receiver-timeout"><varname>wal_receiver_timeout</></link>
parameter to control the <acronym>WAL</> receiver timeout parameter to control the <acronym>WAL</> receiver's timeout
(Amit Kapila) (Amit Kapila)
</para> </para>
...@@ -729,18 +805,10 @@ ...@@ -729,18 +805,10 @@
</para> </para>
</listitem> </listitem>
</itemizedlist>
<sect4>
<title><link linkend="wal">Write-Ahead Log</link>
(<acronym>WAL</>)</title>
<itemizedlist>
<listitem> <listitem>
<para> <para>
Change the <acronym>WAL</> record format to allow splitting the record header Change the <link linkend="wal"><acronym>WAL</></link> record format to
across pages (Heikki Linnakangas) allow splitting the record header across pages (Heikki Linnakangas)
</para> </para>
<para> <para>
...@@ -751,8 +819,6 @@ ...@@ -751,8 +819,6 @@
</itemizedlist> </itemizedlist>
</sect4>
</sect3> </sect3>
<sect3> <sect3>
...@@ -779,7 +845,15 @@ ...@@ -779,7 +845,15 @@
Add support for piping <link Add support for piping <link
linkend="SQL-COPY"><command>COPY</></link> and <link linkend="SQL-COPY"><command>COPY</></link> and <link
linkend="APP-PSQL"><application>psql</></link> <command>\copy</> linkend="APP-PSQL"><application>psql</></link> <command>\copy</>
to/from an external program (Etsuro Fujita) data to/from an external program (Etsuro Fujita)
</para>
</listitem>
<listitem>
<para>
Allow a multirow <link
linkend="SQL-VALUES"><literal>VALUES</></link> clause in a rule
to reference <literal>OLD</>/<literal>NEW</> (Tom Lane)
</para> </para>
</listitem> </listitem>
...@@ -800,8 +874,7 @@ ...@@ -800,8 +874,7 @@
<para> <para>
This allows server-side functions written in event-enabled This allows server-side functions written in event-enabled
languages, e.g. C, PL/pgSQL, to be called when DDL commands languages to be called when DDL commands are run.
are run.
</para> </para>
</listitem> </listitem>
...@@ -813,14 +886,6 @@ ...@@ -813,14 +886,6 @@
</para> </para>
</listitem> </listitem>
<listitem>
<para>
Allow a multirow <link
linkend="SQL-VALUES"><literal>VALUES</></link> clause in a rule
to reference <literal>OLD</>/<literal>NEW</> (Tom Lane)
</para>
</listitem>
<listitem> <listitem>
<para> <para>
Add <link linkend="SQL-CREATESCHEMA"><command>CREATE SCHEMA ... IF Add <link linkend="SQL-CREATESCHEMA"><command>CREATE SCHEMA ... IF
...@@ -830,22 +895,24 @@ ...@@ -830,22 +895,24 @@
<listitem> <listitem>
<para> <para>
Have <link linkend="SQL-REASSIGN-OWNED"><command>REASSIGN Make <link linkend="SQL-REASSIGN-OWNED"><command>REASSIGN
OWNED</></link> also change ownership of shared objects OWNED</></link> also change ownership of shared objects
(&Aacute;lvaro Herrera) (&Aacute;lvaro Herrera)
</para> </para>
</listitem> </listitem>
</itemizedlist> <listitem>
<para>
<sect4> Make <link linkend="sql-createaggregate"><command>CREATE
<title><link linkend="SQL-CREATETABLE"><command>CREATE TABLE</></link></title> AGGREGATE</></link> complain if the given initial value string is not
valid input for the transition datatype (Tom Lane)
<itemizedlist> </para>
</listitem>
<listitem> <listitem>
<para> <para>
Suppress messages about implicit index and sequence creation Suppress <link linkend="SQL-CREATETABLE"><command>CREATE
TABLE</></link>'s messages about implicit index and sequence creation
(Robert Haas) (Robert Haas)
</para> </para>
...@@ -867,15 +934,6 @@ ...@@ -867,15 +934,6 @@
</para> </para>
</listitem> </listitem>
</itemizedlist>
</sect4>
<sect4>
<title>Constraints</title>
<itemizedlist>
<listitem> <listitem>
<para> <para>
Provide clients with <link Provide clients with <link
...@@ -884,17 +942,15 @@ ...@@ -884,17 +942,15 @@
</para> </para>
<para> <para>
This allows clients to retrieve table, column, data type, or constraint This allows clients to retrieve table, column, data type, or
name error details. Previously such information had to be extracted from constraint name error details. Previously such information had to be
error strings. Client library support is required to access these extracted from error strings. Client library support is required to
fields. access these fields.
</para> </para>
</listitem> </listitem>
</itemizedlist> </itemizedlist>
</sect4>
<sect4> <sect4>
<title><command>ALTER</></title> <title><command>ALTER</></title>
...@@ -915,7 +971,7 @@ ...@@ -915,7 +971,7 @@
<listitem> <listitem>
<para> <para>
Add <link linkend="SQL-ALTERROLE"><command>ALTER ROLE ALL Add <link linkend="SQL-ALTERROLE"><command>ALTER ROLE ALL
SET</></link> to add settings to all users (Peter Eisentraut) SET</></link> to establish settings for all users (Peter Eisentraut)
</para> </para>
<para> <para>
...@@ -975,28 +1031,29 @@ ...@@ -975,28 +1031,29 @@
<listitem> <listitem>
<para> <para>
Improve view/rule printing code to handle cases where referenced Add <link linkend="SQL-CREATEVIEW"><command>CREATE RECURSIVE
tables are renamed, or columns are renamed, added, or dropped VIEW</></link> syntax (Peter Eisentraut)
(Tom Lane)
</para> </para>
<para> <para>
Table and column renamings can produce cases where, if we merely Internally this is translated into <command>CREATE VIEW ... WITH
substitute the new name into the original text of a rule or view, the RECURSIVE ...</>.
result is ambiguous. This patch fixes the rule-dumping code to insert
table and column aliases if needed to preserve the original semantics.
</para> </para>
</listitem> </listitem>
<listitem> <listitem>
<para> <para>
Add <link linkend="SQL-CREATEVIEW"><command>CREATE RECURSIVE Improve view/rule printing code to handle cases where referenced
VIEW</></link> syntax (Peter Eisentraut) tables are renamed, or columns are renamed, added, or dropped
(Tom Lane)
</para> </para>
<para> <para>
Internally this is translated into <command>CREATE VIEW ... WITH Table and column renamings can produce cases where, if we merely
RECURSIVE ...</>. substitute the new name into the original text of a rule or view, the
result is ambiguous. This change fixes the rule-dumping code to insert
manufactured table and column aliases when needed to preserve the
original semantics.
</para> </para>
</listitem> </listitem>
...@@ -1013,21 +1070,22 @@ ...@@ -1013,21 +1070,22 @@
<listitem> <listitem>
<para> <para>
Increase the maximum length of <link linkend="lo-open">large Increase the maximum size of <link linkend="largeObjects">large
objects</link> from 2GB to 4TB (Nozomi Anzai, Yugo Nagata) objects</link> from 2GB to 4TB (Nozomi Anzai, Yugo Nagata)
</para> </para>
<para> <para>
This change includes new libpq and server-side 64-bit-capable This change includes adding 64-bit-capable large object access
large object access functions. functions, both in the server and in libpq.
</para> </para>
</listitem> </listitem>
<listitem> <listitem>
<para> <para>
Allow text <link linkend="datatype-timezones">timezone Allow text <link linkend="datatype-timezones">timezone
designations</link>, e.g. <quote>America/Chicago</> when using designations</link>, e.g. <quote>America/Chicago</>, in the
the <acronym>ISO</> <quote>T</> <type>timestamptz</type> format (Bruce Momjian) <quote>T</> field of <acronym>ISO</>-format <type>timestamptz</type>
input (Bruce Momjian)
</para> </para>
</listitem> </listitem>
...@@ -1041,13 +1099,13 @@ ...@@ -1041,13 +1099,13 @@
<listitem> <listitem>
<para> <para>
Add <link linkend="functions-json">operators and functions</link> Add <link linkend="functions-json">operators and functions</link>
to extract values from <type>JSON</> data strings (Andrew Dunstan) to extract elements from <type>JSON</> values (Andrew Dunstan)
</para> </para>
</listitem> </listitem>
<listitem> <listitem>
<para> <para>
Allow <type>JSON</> data strings to be <link Allow <type>JSON</> values to be <link
linkend="functions-json-table">converted into records</link> linkend="functions-json-table">converted into records</link>
(Andrew Dunstan) (Andrew Dunstan)
</para> </para>
...@@ -1055,9 +1113,9 @@ ...@@ -1055,9 +1113,9 @@
<listitem> <listitem>
<para> <para>
Add <link linkend="functions-json-table">functions</link> Add <link linkend="functions-json-table">functions</link> to convert
to convert values, records, and hstore data to <type>JSON</> scalars, records, and <type>hstore</> values to <type>JSON</> (Andrew
(Andrew Dunstan) Dunstan)
</para> </para>
</listitem> </listitem>
...@@ -1098,32 +1156,32 @@ ...@@ -1098,32 +1156,32 @@
<para> <para>
Improve <link Improve <link
linkend="functions-string-format"><function>format()</></link> linkend="functions-string-format"><function>format()</></link>
to handle field width and left/right alignment (Pavel Stehule) to provide field width and left/right alignment options (Pavel Stehule)
</para> </para>
</listitem> </listitem>
<listitem> <listitem>
<para> <para>
Have <link Make <link
linkend="functions-formatting-table"><function>to_char()</></link>, linkend="functions-formatting-table"><function>to_char()</></link>,
<link <link
linkend="functions-formatting-table"><function>to_date()</></link>, linkend="functions-formatting-table"><function>to_date()</></link>,
and <link and <link
linkend="functions-formatting-table"><function>to_timestamp()</></link> linkend="functions-formatting-table"><function>to_timestamp()</></link>
properly handle negative century designations (<literal>CC</>) handle negative (BC) century values properly
(Bruce Momjian) (Bruce Momjian)
</para> </para>
<para> <para>
Previously the behavior was either wrong or inconsistent Previously the behavior was either wrong or inconsistent
with positive/<acronym>AD</> handling, e.g. format mask with positive/<acronym>AD</> handling, e.g. with the format mask
<quote>IYYY-IW-DY</>. <quote>IYYY-IW-DY</>.
</para> </para>
</listitem> </listitem>
<listitem> <listitem>
<para> <para>
Have <link Make <link
linkend="functions-formatting-table"><function>to_date()</></link> linkend="functions-formatting-table"><function>to_date()</></link>
and <link and <link
linkend="functions-formatting-table"><function>to_timestamp()</></link> linkend="functions-formatting-table"><function>to_timestamp()</></link>
...@@ -1136,9 +1194,8 @@ ...@@ -1136,9 +1194,8 @@
<para> <para>
Cause <link Cause <link
linkend="functions-info-catalog-table"><function>pg_get_viewdef()</></link> linkend="functions-info-catalog-table"><function>pg_get_viewdef()</></link>
to start a new line by default after each <link to start a new line by default after each <literal>SELECT</> target
linkend="SQL-SELECT"><command>SELECT</></link> target list entry and list entry and <literal>FROM</> entry (Marko Tiikkaja)
<literal>FROM</> entry (Marko Tiikkaja)
</para> </para>
<para> <para>
...@@ -1161,19 +1218,6 @@ ...@@ -1161,19 +1218,6 @@
</para> </para>
</listitem> </listitem>
<listitem>
<para>
Force cached plans to be replanned if the <link
linkend="guc-search-path"><varname>search_path</></link> changes
(Tom Lane)
</para>
<para>
Previously cached plans already generated in the current session
ignored <varname>search_path</> changes.
</para>
</listitem>
</itemizedlist> </itemizedlist>
</sect3> </sect3>
...@@ -1181,18 +1225,6 @@ ...@@ -1181,18 +1225,6 @@
<sect3> <sect3>
<title>Server-Side Languages</title> <title>Server-Side Languages</title>
<itemizedlist>
<listitem>
<para>
Allow <link linkend="spi-spi-execute"><acronym>SPI</></link>
functions to access the number of rows processed by
<link linkend="SQL-COPY"><command>COPY</></link> (Pavel Stehule)
</para>
</listitem>
</itemizedlist>
<sect4> <sect4>
<title><link linkend="plpgsql">PL/pgSQL</link> Server-Side Language</title> <title><link linkend="plpgsql">PL/pgSQL</link> Server-Side Language</title>
...@@ -1225,7 +1257,8 @@ ...@@ -1225,7 +1257,8 @@
</para> </para>
<para> <para>
The command is <link A <command>COPY</> executed in a PL/pgSQL function now updates the
value retrieved by <link
linkend="plpgsql-statements-diagnostics"><command>GET DIAGNOSTICS linkend="plpgsql-statements-diagnostics"><command>GET DIAGNOSTICS
x = ROW_COUNT</></link>. x = ROW_COUNT</></link>.
</para> </para>
...@@ -1233,7 +1266,13 @@ ...@@ -1233,7 +1266,13 @@
<listitem> <listitem>
<para> <para>
Allow greater flexibility in where keywords can be used in PL/pgSQL (Tom Lane) Allow unreserved keywords to be used as identifiers everywhere in
PL/pgSQL (Tom Lane)
</para>
<para>
In certain places in the PL/pgSQL grammar, keywords had to be quoted
to be used as identifiers, even if they were nominally unreserved.
</para> </para>
</listitem> </listitem>
...@@ -1277,6 +1316,41 @@ ...@@ -1277,6 +1316,41 @@
</sect3> </sect3>
<sect3>
<title>Server Programming Interface (<link linkend="spi">SPI</link>)</title>
<itemizedlist>
<listitem>
<para>
Prevent leakage of <acronym>SPI</> tuple tables during subtransaction
abort (Tom Lane)
</para>
<para>
At the end of any failed subtransaction, the core SPI code now
releases any SPI tuple tables that were created during that
subtransaction. This avoids the need for SPI-using code to keep track
of such tuple tables and release them manually in error-recovery code.
Failure to do so caused a number of transaction-lifespan memory leakage
issues in PL/pgSQL and perhaps other SPI clients. <link
linkend="spi-spi-freetupletable"><function>SPI_freetuptable()</></link>
now protects itself against multiple freeing requests, so any existing
code that did take care to clean up shouldn't be broken by this change.
</para>
</listitem>
<listitem>
<para>
Allow <acronym>SPI</> functions to access the number of rows processed
by <link linkend="SQL-COPY"><command>COPY</></link> (Pavel Stehule)
</para>
</listitem>
</itemizedlist>
</sect3>
<sect3> <sect3>
<title>Client Applications</title> <title>Client Applications</title>
...@@ -1301,9 +1375,9 @@ ...@@ -1301,9 +1375,9 @@
</para> </para>
<para> <para>
This is similar to the <link This is similar to the way <link
linkend="APP-PGDUMP"><application>pg_dump</></link> <option>--table</> linkend="APP-PGDUMP"><application>pg_dump</></link>'s
option. <option>--table</> option works.
</para> </para>
</listitem> </listitem>
...@@ -1314,7 +1388,7 @@ ...@@ -1314,7 +1388,7 @@
linkend="app-pgbasebackup"><application>pg_basebackup</></link>, and linkend="app-pgbasebackup"><application>pg_basebackup</></link>, and
<link <link
linkend="app-pgreceivexlog"><application>pg_receivexlog</></link> linkend="app-pgreceivexlog"><application>pg_receivexlog</></link>
to specify the connection string (Amit Kapila) to allow specifying a connection string (Amit Kapila)
</para> </para>
</listitem> </listitem>
...@@ -1337,14 +1411,14 @@ ...@@ -1337,14 +1411,14 @@
<listitem> <listitem>
<para> <para>
Adjust function cost settings so <application>psql</> tab Adjust function cost settings so <application>psql</> tab
completion and pattern searching is more efficient (Tom Lane) completion and pattern searching are more efficient (Tom Lane)
</para> </para>
</listitem> </listitem>
<listitem> <listitem>
<para> <para>
Improve <application>psql</> tab completion coverage (Jeff Janes, Improve <application>psql</>'s tab completion coverage (Jeff Janes,
Peter Eisentraut) Dean Rasheed, Peter Eisentraut, Magnus Hagander)
</para> </para>
</listitem> </listitem>
...@@ -1367,21 +1441,22 @@ ...@@ -1367,21 +1441,22 @@
</para> </para>
<para> <para>
The warning when connecting to a newer server was retained. A warning is still issued when connecting to a server of a newer major
version than <application>psql</>'s.
</para> </para>
</listitem> </listitem>
</itemizedlist> </itemizedlist>
<sect5> <sect5>
<title><link linkend="R2-APP-PSQL-4">Backslash Commands</link></title> <title><link linkend="APP-PSQL-meta-commands">Backslash Commands</link></title>
<itemizedlist> <itemizedlist>
<listitem> <listitem>
<para> <para>
Add <application>psql</> <command>\watch</> command to repeatedly Add <application>psql</> command <command>\watch</> to repeatedly
execute commands (Will Leinweber) execute a SQL command (Will Leinweber)
</para> </para>
</listitem> </listitem>
...@@ -1401,14 +1476,14 @@ ...@@ -1401,14 +1476,14 @@
<listitem> <listitem>
<para> <para>
Add <quote>Security</> label to <application>psql</> <command>\df+</> Add <quote>Security</> column to <application>psql</>'s
output (Jon Erdman) <command>\df+</> output (Jon Erdman)
</para> </para>
</listitem> </listitem>
<listitem> <listitem>
<para> <para>
Allow <application>psql</> <command>\l</> to accept a database Allow <application>psql</> command <command>\l</> to accept a database
name pattern (Peter Eisentraut) name pattern (Peter Eisentraut)
</para> </para>
</listitem> </listitem>
...@@ -1426,8 +1501,9 @@ ...@@ -1426,8 +1501,9 @@
<listitem> <listitem>
<para> <para>
Properly reset state if the SQL command executed with Properly reset state after failure of a SQL command executed with
<application>psql</>'s <quote>\g file</> fails (Tom Lane) <application>psql</>'s <literal>\g</> <replaceable>file</>
(Tom Lane)
</para> </para>
<para> <para>
...@@ -1465,15 +1541,15 @@ ...@@ -1465,15 +1541,15 @@
<listitem> <listitem>
<para> <para>
In <application>psql</> tuples-only and expanded modes, no longer In <application>psql</>'s tuples-only and expanded output modes, no
output <quote>(No rows)</> (Peter Eisentraut) longer emit <quote>(No rows)</> for zero rows (Peter Eisentraut)
</para> </para>
</listitem> </listitem>
<listitem> <listitem>
<para> <para>
In <application>psql</>, no longer print an empty line for In <application>psql</>'s unaligned, expanded output mode, no longer
unaligned, expanded output for zero rows (Peter Eisentraut) print an empty line for zero rows (Peter Eisentraut)
</para> </para>
</listitem> </listitem>
...@@ -1497,15 +1573,14 @@ ...@@ -1497,15 +1573,14 @@
<listitem> <listitem>
<para> <para>
Have <application>pg_dump</> output functions in a more predictable Make <application>pg_dump</> output functions in a more predictable
order (Joel Jacobson) order (Joel Jacobson)
</para> </para>
</listitem> </listitem>
<listitem> <listitem>
<para> <para>
Fix tar files emitted by <application>pg_dump</> and <link Fix tar files emitted by <application>pg_dump</>
linkend="app-pgbasebackup"><application>pg_basebackup</></link>
to be <acronym>POSIX</> conformant (Brian Weaver, Tom Lane) to be <acronym>POSIX</> conformant (Brian Weaver, Tom Lane)
</para> </para>
</listitem> </listitem>
...@@ -1532,11 +1607,12 @@ ...@@ -1532,11 +1607,12 @@
<listitem> <listitem>
<para> <para>
Have initdb fsync the newly created data directory (Jeff Davis) Make initdb fsync the newly created data directory (Jeff Davis)
</para> </para>
<para> <para>
This can be disabled by using <option>--nosync</>. This insures data integrity in event of a system crash shortly after
initdb. This can be disabled by using <option>--nosync</>.
</para> </para>
</listitem> </listitem>
...@@ -1554,7 +1630,7 @@ ...@@ -1554,7 +1630,7 @@
<listitem> <listitem>
<para> <para>
Have initdb issue a warning about placing the data directory at the Make initdb issue a warning about placing the data directory at the
top of a file system mount point (Bruce Momjian) top of a file system mount point (Bruce Momjian)
</para> </para>
</listitem> </listitem>
...@@ -1572,13 +1648,7 @@ ...@@ -1572,13 +1648,7 @@
<listitem> <listitem>
<para> <para>
Add an embedded list interface (Andres Freund) Add infrastructure to allow plug-in <link
</para>
</listitem>
<listitem>
<para>
Add infrastructure to better support plug-in <link
linkend="bgworker">background worker processes</link> linkend="bgworker">background worker processes</link>
(&Aacute;lvaro Herrera) (&Aacute;lvaro Herrera)
</para> </para>
...@@ -1598,19 +1668,54 @@ ...@@ -1598,19 +1668,54 @@
</para> </para>
<para> <para>
This allows libpgport to be used solely for porting code. This allows libpgport to be used solely for portability-related code.
</para>
</listitem>
<listitem>
<para>
Add support for list links embedded in larger structs (Andres Freund)
</para>
</listitem>
<listitem>
<para>
Use <literal>SA_RESTART</> for all signals,
including <literal>SIGALRM</> (Tom Lane)
</para> </para>
</listitem> </listitem>
<listitem> <listitem>
<para> <para>
Standardize on naming of client-side memory allocation functions (Tom Lane) Ensure that the correct text domain is used when
translating <function>errcontext()</> messages
(Heikki Linnakangas)
</para> </para>
</listitem> </listitem>
<listitem> <listitem>
<para> <para>
Add compiler designations to indicate some <function>ereport()</> Standardize naming of client-side memory allocation functions (Tom Lane)
</para>
</listitem>
<listitem>
<para>
Provide support for <quote>static assertions</> that will fail at
compile time if some compile-time-constant condition is not met
(Andres Freund, Tom Lane)
</para>
</listitem>
<listitem>
<para>
Support <function>Assert()</> in client-side code (Andrew Dunstan)
</para>
</listitem>
<listitem>
<para>
Add decoration to inform the C compiler that some <function>ereport()</>
and <function>elog()</> calls do not return (Peter Eisentraut, and <function>elog()</> calls do not return (Peter Eisentraut,
Andres Freund, Tom Lane, Heikki Linnakangas) Andres Freund, Tom Lane, Heikki Linnakangas)
</para> </para>
...@@ -1650,8 +1755,8 @@ ...@@ -1650,8 +1755,8 @@
<listitem> <listitem>
<para> <para>
Remove <link linkend="configure">configure</link> flag Remove <link linkend="configure">configure</link> flag
<option>--disable-shared</>, as it is no longer used (Bruce <option>--disable-shared</>, as it is no longer supported
Momjian) (Bruce Momjian)
</para> </para>
</listitem> </listitem>
...@@ -1663,38 +1768,39 @@ ...@@ -1663,38 +1768,39 @@
<listitem> <listitem>
<para> <para>
Add Emacs macro to match <productname>PostgreSQL</> perltidy Provide Emacs macro to set Perl formatting to
formatting (Peter Eisentraut) match <productname>PostgreSQL</>'s perltidy settings (Peter Eisentraut)
</para> </para>
</listitem> </listitem>
<listitem> <listitem>
<para> <para>
Run tool to check the keyword list when the backend grammar is Run tool to check the keyword list whenever the backend grammar is
changed (Tom Lane) changed (Tom Lane)
</para> </para>
</listitem> </listitem>
<listitem> <listitem>
<para> <para>
Centralize <application>flex</> and <application>bison</> Change the way <literal>UESCAPE</> is lexed, to significantly reduce
<application>make</> rules (Peter Eisentraut) the size of the lexer tables (Heikki Linnakangas)
</para> </para>
</listitem>
<listitem>
<para> <para>
This is useful for <application>pgxs</> authors. Centralize <application>flex</> and <application>bison</>
<application>make</> rules (Peter Eisentraut)
</para> </para>
</listitem>
<listitem>
<para> <para>
Support <function>Assert()</> in client-side code (Andrew Dunstan) This is useful for <application>pgxs</> authors.
</para> </para>
</listitem> </listitem>
<listitem> <listitem>
<para> <para>
Change many internal backend functions to return <type>OID</>s Change many internal backend functions to return object <type>OID</>s
rather than void (Dimitri Fontaine) rather than void (Dimitri Fontaine)
</para> </para>
...@@ -1719,8 +1825,8 @@ ...@@ -1719,8 +1825,8 @@
<para> <para>
Add function <link Add function <link
linkend="functions-info-catalog-table"><function>pg_identify_object()</></link> linkend="functions-info-catalog-table"><function>pg_identify_object()</></link>
to dump an object in machine-readable format (&Aacute;lvaro to produce a machine-readable description of a database object
Herrera) (&Aacute;lvaro Herrera)
</para> </para>
</listitem> </listitem>
...@@ -1739,14 +1845,15 @@ ...@@ -1739,14 +1845,15 @@
<listitem> <listitem>
<para> <para>
Improve ability to detect official timezone abbreviation changes Provide a tool to help detect timezone abbreviation changes when
updating the <filename>src/timezone/data</> files
(Tom Lane) (Tom Lane)
</para> </para>
</listitem> </listitem>
<listitem> <listitem>
<para> <para>
Add <application>pkg-config</> support <application>libpq</> Add <application>pkg-config</> support for <application>libpq</>
and <application>ecpg</> libraries (Peter Eisentraut) and <application>ecpg</> libraries (Peter Eisentraut)
</para> </para>
</listitem> </listitem>
...@@ -1805,8 +1912,9 @@ ...@@ -1805,8 +1912,9 @@
<listitem> <listitem>
<para> <para>
Add a <productname>Postgres</> <link linkend="postgres-fdw">foreign Add a <link linkend="postgres-fdw"><productname>Postgres</> foreign
data wrapper</link> contrib module (Shigeru Hanada) data wrapper</link> contrib module to allow access to
other <productname>Postgres</> servers (Shigeru Hanada)
</para> </para>
<para> <para>
...@@ -1831,21 +1939,29 @@ ...@@ -1831,21 +1939,29 @@
<listitem> <listitem>
<para> <para>
Improve <link linkend="pgtrgm"><productname>pg_trgm</></link> Improve <link linkend="pgtrgm"><productname>pg_trgm</></link>'s
handling of multibyte characters (Tom Lane) handling of multibyte characters (Tom Lane)
</para> </para>
<para>
On a platform that does not have the wcstombs() or towlower() library
functions, this could result in an incompatible change in the contents
of <productname>pg_trgm</> indexes for non-ASCII data. In such cases,
<command>REINDEX</> those indexes to ensure correct search results.
</para>
</listitem> </listitem>
<listitem> <listitem>
<para> <para>
Add <link linkend="pgstattuple">pgstattuple function</link> to report the Add a <link linkend="pgstattuple">pgstattuple</link> function to report
size of the <type>GIN</> pending index insertion list (Fujii Masao) the size of the pending-insertions list of a <acronym>GIN</> index
(Fujii Masao)
</para> </para>
</listitem> </listitem>
<listitem> <listitem>
<para> <para>
Have <link linkend="oid2name"><application>oid2name</></link>, Make <link linkend="oid2name"><application>oid2name</></link>,
<link linkend="pgbench"><application>pgbench</></link>, and <link linkend="pgbench"><application>pgbench</></link>, and
<link linkend="vacuumlo"><application>vacuumlo</></link> set <link linkend="vacuumlo"><application>vacuumlo</></link> set
<varname>fallback_application_name</> (Amit Kapila) <varname>fallback_application_name</> (Amit Kapila)
...@@ -1870,12 +1986,15 @@ ...@@ -1870,12 +1986,15 @@
<listitem> <listitem>
<para> <para>
Improve <link linkend="dblink">dblink</link> option validator Create a dedicated foreign data wrapper, with its own option validator
(Tom Lane) function, for <link linkend="dblink">dblink</link> (Shigeru Hanada)
</para> </para>
<para> <para>
Details? When using this FDW to define the target of a <application>dblink</>
connection, instead of using a hard-wired list of connection options,
the underlying <application>libpq</> library is consulted to see what
connection options it supports.
</para> </para>
</listitem> </listitem>
...@@ -1888,19 +2007,20 @@ ...@@ -1888,19 +2007,20 @@
<listitem> <listitem>
<para> <para>
Allow <application>pg_upgrade</> <option>--jobs</> to do Allow <application>pg_upgrade</> to do dumps and restores in
parallelism (Bruce Momjian, Andrew Dunstan) parallel (Bruce Momjian, Andrew Dunstan)
</para> </para>
<para> <para>
This allows parallel schema dump/restore of databases, as well as This allows parallel schema dump/restore of databases, as well as
parallel copy/link of data files per tablespace. parallel copy/link of data files per tablespace. Use the
<option>--jobs</> option to specify the level of parallelism.
</para> </para>
</listitem> </listitem>
<listitem> <listitem>
<para> <para>
Have <application>pg_upgrade</> create Unix-domain sockets in Make <application>pg_upgrade</> create Unix-domain sockets in
the current directory (Bruce Momjian, Tom Lane) the current directory (Bruce Momjian, Tom Lane)
</para> </para>
...@@ -1912,7 +2032,7 @@ ...@@ -1912,7 +2032,7 @@
<listitem> <listitem>
<para> <para>
Have <application>pg_upgrade</> <option>--check</> mode properly Make <application>pg_upgrade</> <option>--check</> mode properly
detect the location of non-default socket directories (Bruce detect the location of non-default socket directories (Bruce
Momjian, Tom Lane) Momjian, Tom Lane)
</para> </para>
...@@ -1927,8 +2047,8 @@ ...@@ -1927,8 +2047,8 @@
<listitem> <listitem>
<para> <para>
Increase <application>pg_upgrade</> logging content by showing Improve <application>pg_upgrade</>'s logs by showing
executed command (&Aacute;lvaro Herrera) executed commands (&Aacute;lvaro Herrera)
</para> </para>
</listitem> </listitem>
...@@ -1999,7 +2119,9 @@ ...@@ -1999,7 +2119,9 @@
<listitem> <listitem>
<para> <para>
Allow <application>pgbench</> to use a larger scale factor Allow <application>pgbench</> to use much larger scale factors,
by changing relevant columns from <type>integer</> to <type>bigint</>
when the requested scale factor exceeds 20000
(Greg Smith) (Greg Smith)
</para> </para>
</listitem> </listitem>
...@@ -2032,13 +2154,13 @@ ...@@ -2032,13 +2154,13 @@
<listitem> <listitem>
<para> <para>
Improve <link linkend="tutorial-window"><literal>WINDOW</> Improve <link linkend="tutorial-window"><literal>WINDOW</>
function</link> documentation (Bruce Momjian, Tom Lane) function</link> documentation (Bruce Momjian, Florian Pflug)
</para> </para>
</listitem> </listitem>
<listitem> <listitem>
<para> <para>
Add <link linkend="docguide">instructions</link> for setting Add <link linkend="docguide-toolsets">instructions</link> for setting
up the documentation tool chain on Mac <productname>OS X</> up the documentation tool chain on Mac <productname>OS X</>
(Peter Eisentraut) (Peter Eisentraut)
</para> </para>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment