1
0
mirror of https://github.com/postgres/postgres.git synced 2025-05-05 09:19:17 +03:00

Update 9.0 release notes to current.

This commit is contained in:
Bruce Momjian 2010-06-03 16:33:36 +00:00
parent 34e543763c
commit a68055eab6

View File

@ -1,4 +1,4 @@
<!-- $PostgreSQL: pgsql/doc/src/sgml/release-9.0.sgml,v 2.24 2010/06/01 13:43:39 momjian Exp $ --> <!-- $PostgreSQL: pgsql/doc/src/sgml/release-9.0.sgml,v 2.25 2010/06/03 16:33:36 momjian Exp $ -->
<sect1 id="release-9-0"> <sect1 id="release-9-0">
<title>Release 9.0</title> <title>Release 9.0</title>
@ -179,7 +179,7 @@ recovery_connections -> hot_standby
<sect2> <sect2>
<title>Migration to Version 9.0</title> <title>Migration to Version 9.0</title>
<para>CURRENT AS OF 2010-05-12</para> <para>CURRENT AS OF 2010-06-03</para>
<para> <para>
A dump/restore using <application>pg_dump</application> is A dump/restore using <application>pg_dump</application> is
@ -588,7 +588,6 @@ recovery_connections -> hot_standby
</para> </para>
</listitem> </listitem>
<listitem> <listitem>
<para> <para>
Allow <link linkend="auth-ldap"><acronym>LDAP</></link> Allow <link linkend="auth-ldap"><acronym>LDAP</></link>
@ -616,6 +615,13 @@ recovery_connections -> hot_standby
</para> </para>
</listitem> </listitem>
<listitem>
<para>
Pass trusted SSL root certificate names to the client so the client
can return an appropriate client certificate (Craig Ringer)
</para>
</listitem>
</itemizedlist> </itemizedlist>
</sect4> </sect4>
@ -1336,8 +1342,8 @@ recovery_connections -> hot_standby
<para> <para>
For example, if a function is defined to take parameters <literal>a</> For example, if a function is defined to take parameters <literal>a</>
and <literal>b</>, it can be called with <literal>func(7 AS a, 12 and <literal>b</>, it can be called with <literal>func(a := 7, b
AS b)</> or <literal>func(12 AS b, 7 AS a)</>. := 12)</> or <literal>func(b := 12, a := 7)</>.
</para> </para>
</listitem> </listitem>
@ -2097,6 +2103,17 @@ recovery_connections -> hot_standby
</para> </para>
</listitem> </listitem>
<listitem>
<para>
Load SSL certificate chain (Tom Lane)
</para>
<para>
This improves handling of indirectly-signed SSL client
certificates.
</para>
</listitem>
</itemizedlist> </itemizedlist>
</sect4> </sect4>
@ -2161,6 +2178,13 @@ recovery_connections -> hot_standby
</para> </para>
</listitem> </listitem>
<listitem>
<para>
Support <type>long long</> types on platforms that already have 64-bit
<type>long</>s (Michael Meskes))
</para>
</listitem>
</itemizedlist> </itemizedlist>
<sect5> <sect5>
@ -2528,7 +2552,7 @@ recovery_connections -> hot_standby
<productname>C++</> usage difficult in backend code, there are <productname>C++</> usage difficult in backend code, there are
still other complexities when using <productname>C++</> for backend still other complexities when using <productname>C++</> for backend
functions. <literal>extern "C" { }</> is still necessary in functions. <literal>extern "C" { }</> is still necessary in
appropriate places. appropriate places (see <xref linkend="extend-Cpp">).
</para> </para>
</listitem> </listitem>