Skip to content

Commit

Permalink
Mise à jour en version 9.3.13
Browse files Browse the repository at this point in the history
  • Loading branch information
gleu committed May 10, 2016
1 parent 928b842 commit 9b83aad
Show file tree
Hide file tree
Showing 9 changed files with 616 additions and 24 deletions.
2 changes: 1 addition & 1 deletion postgresql/pg_xlogdump.xml
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ PostgreSQL documentation

<varlistentry>
<term><option>-t <replaceable>timeline</replaceable></option></term>
<term><option>--timelime=<replaceable>timeline</replaceable></option></term>
<term><option>--timeline=<replaceable>timeline</replaceable></option></term>
<listitem>
<para>
Commence à lire les enregistrements à partir de cette ligne de temps.
Expand Down
2 changes: 1 addition & 1 deletion postgresql/pgbench.xml
Original file line number Diff line number Diff line change
Expand Up @@ -881,7 +881,7 @@ END;
</screen></para>

<para>
Notez que, bien que la trace simple (non agrégée) contient un index des
Notez que, bien que la trace simple (non agrégée) contient une référence des
fichiers de script personnalisés, la trace agrégée n'en contient pas. Du
coup, si vous avez besoin de données par script, vous devez agréger les
données vous-même.
Expand Down
20 changes: 10 additions & 10 deletions postgresql/ref/alter_index.xml
Original file line number Diff line number Diff line change
Expand Up @@ -37,16 +37,6 @@ ALTER INDEX [ IF EXISTS ] <replaceable class="PARAMETER">nom</replaceable> RESET

<variablelist>

<varlistentry>
<term><literal>IF EXISTS</literal></term>
<listitem>
<para>
Ne retourne par d'erreur si l'index n'existe pas. Seul un message d'avertissement
est retourné dans ce cas.
</para>
</listitem>
</varlistentry>

<varlistentry>
<term><literal>RENAME</literal></term>
<listitem>
Expand Down Expand Up @@ -107,6 +97,16 @@ ALTER INDEX [ IF EXISTS ] <replaceable class="PARAMETER">nom</replaceable> RESET

<variablelist>

<varlistentry>
<term><literal>IF EXISTS</literal></term>
<listitem>
<para>
Ne retourne par d'erreur si l'index n'existe pas. Seul un message
d'avertissement est retourné dans ce cas.
</para>
</listitem>
</varlistentry>

<varlistentry>
<term><replaceable class="parameter">nom</replaceable></term>
<listitem>
Expand Down
11 changes: 11 additions & 0 deletions postgresql/ref/initdb.xml
Original file line number Diff line number Diff line change
Expand Up @@ -438,6 +438,17 @@
</para>
</listitem>
</varlistentry>

<varlistentry>
<term><envar>TZ</envar></term>

<listitem>
<para>
Indique le fuseau horaire, en utilisant les noms complets de fuseau
horaire, que l'instance créée doit utiliser.
</para>
</listitem>
</varlistentry>
</variablelist>

<para>
Expand Down
10 changes: 0 additions & 10 deletions postgresql/ref/postgres-ref.xml
Original file line number Diff line number Diff line change
Expand Up @@ -642,16 +642,6 @@
</listitem>
</varlistentry>

<varlistentry>
<term><envar>TZ</envar></term>

<listitem>
<para>
Fuseau horaire du serveur
</para>
</listitem>
</varlistentry>

</variablelist>
</refsect1>

Expand Down
165 changes: 165 additions & 0 deletions postgresql/release-9.1.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,171 @@
<!-- doc/src/sgml/release-9.1.sgml -->
<!-- See header comment in release.sgml about typical markup -->

<sect1 id="release-9-1-22">
<title>Release 9.1.22</title>

<note>
<title>Release Date</title>
<simpara>2016-05-12</simpara>
</note>

<para>
This release contains a variety of fixes from 9.1.21.
For information about new features in the 9.1 major release, see
<xref linkend="release-9-1"/>.
</para>

<para>
The <productname>PostgreSQL</productname> community will stop releasing updates
for the 9.1.X release series in September 2016.
Users are encouraged to update to a newer release branch soon.
</para>

<sect2>
<title>Migration to Version 9.1.22</title>

<para>
A dump/restore is not required for those running 9.1.X.
</para>

<para>
However, if you are upgrading from a version earlier than 9.1.16,
see <xref linkend="release-9-1-16"/>.
</para>

</sect2>

<sect2>
<title>Changes</title>

<itemizedlist>

<listitem>
<para>
Clear the OpenSSL error queue before OpenSSL calls, rather than
assuming it's clear already; and make sure we leave it clear
afterwards (Peter Geoghegan, Dave Vitek, Peter Eisentraut)
</para>

<para>
This change prevents problems when there are multiple connections
using OpenSSL within a single process and not all the code involved
follows the same rules for when to clear the error queue.
Failures have been reported specifically when a client application
uses SSL connections in <application>libpq</application> concurrently with
SSL connections using the PHP, Python, or Ruby wrappers for OpenSSL.
It's possible for similar problems to arise within the server as well,
if an extension module establishes an outgoing SSL connection.
</para>
</listitem>

<listitem>
<para>
Fix <quote>failed to build any <replaceable>N</replaceable>-way joins</quote>
planner error with a full join enclosed in the right-hand side of a
left join (Tom Lane)
</para>
</listitem>

<listitem>
<para>
Fix possible misbehavior of <literal>TH</literal>, <literal>th</literal>,
and <literal>Y,YYY</literal> format codes in <function>to_timestamp()</function>
(Tom Lane)
</para>

<para>
These could advance off the end of the input string, causing subsequent
format codes to read garbage.
</para>
</listitem>

<listitem>
<para>
Fix dumping of rules and views in which the <replaceable>array</replaceable>
argument of a <literal><replaceable>value</replaceable> <replaceable>operator</replaceable>
ANY (<replaceable>array</replaceable>)</literal> construct is a sub-SELECT
(Tom Lane)
</para>
</listitem>

<listitem>
<para>
Make <application>pg_regress</application> use a startup timeout from the
<envar>PGCTLTIMEOUT</envar> environment variable, if that's set (Tom Lane)
</para>

<para>
This is for consistency with a behavior recently added
to <application>pg_ctl</application>; it eases automated testing on slow machines.
</para>
</listitem>

<listitem>
<para>
Fix <application>pg_upgrade</application> to correctly restore extension
membership for operator families containing only one operator class
(Tom Lane)
</para>

<para>
In such a case, the operator family was restored into the new database,
but it was no longer marked as part of the extension. This had no
immediate ill effects, but would cause later <application>pg_dump</application>
runs to emit output that would cause (harmless) errors on restore.
</para>
</listitem>

<listitem>
<para>
Rename internal function <function>strtoi()</function>
to <function>strtoint()</function> to avoid conflict with a NetBSD library
function (Thomas Munro)
</para>
</listitem>

<listitem>
<para>
Fix reporting of errors from <function>bind()</function>
and <function>listen()</function> system calls on Windows (Tom Lane)
</para>
</listitem>

<listitem>
<para>
Reduce verbosity of compiler output when building with Microsoft Visual
Studio (Christian Ullrich)
</para>
</listitem>

<listitem>
<para>
Avoid possibly-unsafe use of Windows' <function>FormatMessage()</function>
function (Christian Ullrich)
</para>

<para>
Use the <literal>FORMAT_MESSAGE_IGNORE_INSERTS</literal> flag where
appropriate. No live bug is known to exist here, but it seems like a
good idea to be careful.
</para>
</listitem>

<listitem>
<para>
Update time zone data files to <application>tzdata</application> release 2016d
for DST law changes in Russia and Venezuela. There are new zone
names <literal>Europe/Kirov</literal> and <literal>Asia/Tomsk</literal> to reflect
the fact that these regions now have different time zone histories from
adjacent regions.
</para>
</listitem>

</itemizedlist>

</sect2>
</sect1>

<sect1 id="release-9-1-21">
<title>Release 9.1.21</title>

Expand Down

0 comments on commit 9b83aad

Please sign in to comment.