mirror of
https://github.com/postgres/postgres.git
synced 2025-06-03 00:02:26 -04:00
doc: 9.4 release note adjustements
Text from David G Johnston
This commit is contained in:
parent
e41cc470bb
commit
b05d1e3c0b
@ -89,7 +89,7 @@
|
|||||||
linkend="functions-formatting-table"><function>to_timestamp()</></link>
|
linkend="functions-formatting-table"><function>to_timestamp()</></link>
|
||||||
and <function>to_date()</> format strings to consume a corresponding
|
and <function>to_date()</> format strings to consume a corresponding
|
||||||
number of characters in the input string (whitespace or not), then
|
number of characters in the input string (whitespace or not), then
|
||||||
conditionally additional adjacent whitespace if not in <literal>FX</>
|
conditionally consume adjacent whitespace if not in <literal>FX</>
|
||||||
mode (Jeevan Chalke)
|
mode (Jeevan Chalke)
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
@ -98,7 +98,7 @@
|
|||||||
format string behaved like a single whitespace character and consumed
|
format string behaved like a single whitespace character and consumed
|
||||||
all adjacent whitespace in the input string. For example, previously
|
all adjacent whitespace in the input string. For example, previously
|
||||||
format string space-space-space would consume only the first space in
|
format string space-space-space would consume only the first space in
|
||||||
' 12', while it will not consume all three characters.
|
' 12', while it will now consume all three characters.
|
||||||
</para>
|
</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
|
|
||||||
@ -122,7 +122,7 @@
|
|||||||
</para>
|
</para>
|
||||||
|
|
||||||
<para>
|
<para>
|
||||||
Previously empty arrays were returned as one-dimensional empty arrays
|
Previously, empty arrays were returned as one-dimensional empty arrays
|
||||||
whose text representation looked the same as zero-dimensional arrays
|
whose text representation looked the same as zero-dimensional arrays
|
||||||
(<literal>{}</>). <application>intarray</>'s behavior in this area
|
(<literal>{}</>). <application>intarray</>'s behavior in this area
|
||||||
now matches the built-in array operators.
|
now matches the built-in array operators.
|
||||||
@ -131,9 +131,9 @@
|
|||||||
|
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>
|
<para>
|
||||||
NULL <link
|
Disallow NULL <link
|
||||||
linkend="xfunc-sql-variadic-functions"><literal>VARIADIC</></link>
|
linkend="xfunc-sql-variadic-functions"><literal>VARIADIC</></link>
|
||||||
function arguments are now disallowed (Pavel Stehule)
|
function arguments (Pavel Stehule)
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
<para>
|
<para>
|
||||||
@ -300,7 +300,7 @@
|
|||||||
|
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>
|
<para>
|
||||||
<command>DISCARD ALL</> now also discards the state of sequences.
|
<command>DISCARD ALL</> now also discards sequence state.
|
||||||
</para>
|
</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
|
|
||||||
@ -366,7 +366,7 @@
|
|||||||
|
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>
|
<para>
|
||||||
During immediate shutdown, send uncatchable termination signals
|
During immediate shutdown send uncatchable termination signals
|
||||||
to child processes that have not already shutdown (MauMau,
|
to child processes that have not already shutdown (MauMau,
|
||||||
Álvaro Herrera)
|
Álvaro Herrera)
|
||||||
</para>
|
</para>
|
||||||
@ -740,7 +740,7 @@
|
|||||||
|
|
||||||
<para>
|
<para>
|
||||||
In contrast
|
In contrast
|
||||||
to <link linkend="guc-local-preload-libraries"><varname>local_preload_libraries</></link>,
|
to <link linkend="guc-local-preload-libraries"><varname>local_preload_libraries</></link>
|
||||||
this parameter can load any shared library, not just those in
|
this parameter can load any shared library, not just those in
|
||||||
the <filename>$libdir/plugins</> directory.
|
the <filename>$libdir/plugins</> directory.
|
||||||
</para>
|
</para>
|
||||||
@ -789,8 +789,8 @@
|
|||||||
<listitem>
|
<listitem>
|
||||||
<para>
|
<para>
|
||||||
Have Windows <acronym>ASCII</>-encoded databases and server process
|
Have Windows <acronym>ASCII</>-encoded databases and server process
|
||||||
(e.g. <link linkend="app-postmaster">postmaster) emit messages
|
(e.g. <link linkend="app-postmaster">postmaster</>) emit messages
|
||||||
in the <envar>LC_CTYPE</></link>-defined language (Alexander Law,
|
in the <envar>LC_CTYPE</>-defined language (Alexander Law,
|
||||||
Noah Misch)
|
Noah Misch)
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
@ -994,7 +994,7 @@
|
|||||||
<listitem>
|
<listitem>
|
||||||
<para>
|
<para>
|
||||||
Add <link linkend="queries-tablefunctions"><literal>WITH
|
Add <link linkend="queries-tablefunctions"><literal>WITH
|
||||||
ORDINALITY</></link> syntax which numbers rows returned from
|
ORDINALITY</></link> syntax to number rows returned from
|
||||||
<literal>FROM</>-clause functions (Andrew Gierth, David Fetter)
|
<literal>FROM</>-clause functions (Andrew Gierth, David Fetter)
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
@ -1042,7 +1042,7 @@
|
|||||||
Add <command>FORCE NULL</> option
|
Add <command>FORCE NULL</> option
|
||||||
to <link linkend="SQL-COPY"><command>COPY FROM</></link> which causes
|
to <link linkend="SQL-COPY"><command>COPY FROM</></link> which causes
|
||||||
quoted strings matching the null string to be converted to NULL in
|
quoted strings matching the null string to be converted to NULL in
|
||||||
in <literal>CSV</> mode (Ian Barwick, Michael Paquier)
|
<literal>CSV</> mode (Ian Barwick, Michael Paquier)
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
<para>
|
<para>
|
||||||
@ -1178,7 +1178,7 @@
|
|||||||
|
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>
|
<para>
|
||||||
Improve the internal definition of system relations (Andres Freund,
|
Improve how system-level relations are designated (Andres Freund,
|
||||||
Robert Haas)
|
Robert Haas)
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user