Update release notes to today.
This commit is contained in:
parent
44aa60fa7c
commit
ae8a2d1a3a
@ -1,4 +1,4 @@
|
|||||||
<!-- $PostgreSQL: pgsql/doc/src/sgml/release-8.4.sgml,v 1.9 2009/06/08 14:57:21 tgl Exp $ -->
|
<!-- $PostgreSQL: pgsql/doc/src/sgml/release-8.4.sgml,v 1.10 2009/06/11 21:44:26 tgl Exp $ -->
|
||||||
<!-- See header comment in release.sgml about typical markup -->
|
<!-- See header comment in release.sgml about typical markup -->
|
||||||
|
|
||||||
<sect1 id="release-8-4">
|
<sect1 id="release-8-4">
|
||||||
@ -6,7 +6,7 @@
|
|||||||
|
|
||||||
<note>
|
<note>
|
||||||
<title>Release date</title>
|
<title>Release date</title>
|
||||||
<simpara>2009-??-??, ITEMS CURRENT AS OF 2009-05-14</simpara>
|
<simpara>2009-??-??, ITEMS CURRENT AS OF 2009-06-11</simpara>
|
||||||
</note>
|
</note>
|
||||||
|
|
||||||
<sect2>
|
<sect2>
|
||||||
@ -922,6 +922,14 @@
|
|||||||
</para>
|
</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
|
|
||||||
|
<listitem>
|
||||||
|
<para>
|
||||||
|
When archiving is enabled, rotate the last WAL segment at shutdown
|
||||||
|
so that all transactions can be archived immediately
|
||||||
|
(Guillaume Smet, Heikki)
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
|
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>
|
<para>
|
||||||
Delay <quote>smart</> shutdown while a continuous archiving base backup
|
Delay <quote>smart</> shutdown while a continuous archiving base backup
|
||||||
@ -1793,7 +1801,8 @@
|
|||||||
|
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>
|
<para>
|
||||||
Make parsing of <type>interval</> literals more standard-compliant (Tom)
|
Make parsing of <type>interval</> literals more standard-compliant
|
||||||
|
(Tom, Ron Mayer)
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
<para>
|
<para>
|
||||||
@ -2049,6 +2058,13 @@
|
|||||||
</para>
|
</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
|
|
||||||
|
<listitem>
|
||||||
|
<para>
|
||||||
|
Allow the second argument of <function>pg_get_expr()</> to be zero
|
||||||
|
when deparsing an expression that does not contain variables (Tom)
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
|
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>
|
<para>
|
||||||
Modify <function>pg_relation_size()</> to use <literal>regclass</>
|
Modify <function>pg_relation_size()</> to use <literal>regclass</>
|
||||||
@ -2108,11 +2124,25 @@
|
|||||||
<listitem>
|
<listitem>
|
||||||
<para>
|
<para>
|
||||||
Fix the behavior of information schema columns
|
Fix the behavior of information schema columns
|
||||||
<literal>is_insertable_into</> and <literal>is_updatable</> to
|
<structfield>is_insertable_into</> and <structfield>is_updatable</> to
|
||||||
be consistent (Peter)
|
be consistent (Peter)
|
||||||
</para>
|
</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
|
|
||||||
|
<listitem>
|
||||||
|
<para>
|
||||||
|
Improve the behavior of information schema
|
||||||
|
<structfield>datetime_precision</> columns (Peter)
|
||||||
|
</para>
|
||||||
|
|
||||||
|
<para>
|
||||||
|
These columns now show zero for <type>date</> columns, and 6
|
||||||
|
(the default precision) for <type>time</>, <type>timestamp</>, and
|
||||||
|
<type>interval</> without a declared precision, rather than showing
|
||||||
|
null as formerly.
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
|
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>
|
<para>
|
||||||
Convert remaining builtin set-returning functions to use
|
Convert remaining builtin set-returning functions to use
|
||||||
@ -3280,6 +3310,13 @@
|
|||||||
</para>
|
</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
|
|
||||||
|
<listitem>
|
||||||
|
<para>
|
||||||
|
Enable <filename>contrib/dblink</> to use connection information
|
||||||
|
stored in the SQL/MED catalogs (Joe Conway)
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
|
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>
|
<para>
|
||||||
Improve <filename>contrib/dblink</>'s reporting of errors from
|
Improve <filename>contrib/dblink</>'s reporting of errors from
|
||||||
@ -3287,6 +3324,18 @@
|
|||||||
</para>
|
</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
|
|
||||||
|
<listitem>
|
||||||
|
<para>
|
||||||
|
Make <filename>contrib/dblink</> set <varname>client_encoding</>
|
||||||
|
to match the local database's encoding (Joe Conway)
|
||||||
|
</para>
|
||||||
|
|
||||||
|
<para>
|
||||||
|
This prevents encoding problems when communicating with a remote
|
||||||
|
database that uses a different encoding.
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
|
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>
|
<para>
|
||||||
Make sure <filename>contrib/dblink</> uses a password supplied
|
Make sure <filename>contrib/dblink</> uses a password supplied
|
||||||
|
Loading…
x
Reference in New Issue
Block a user