mirror of
https://github.com/postgres/postgres.git
synced 2025-05-05 09:19:17 +03:00
Minor copy-editing for release note updates.
This commit is contained in:
parent
e82da29033
commit
acb01484d6
@ -1,4 +1,4 @@
|
|||||||
<!-- $PostgreSQL: pgsql/doc/src/sgml/release.sgml,v 1.488.2.1 2007/01/05 20:05:47 momjian Exp $ -->
|
<!-- $PostgreSQL: pgsql/doc/src/sgml/release.sgml,v 1.488.2.2 2007/01/05 22:34:46 tgl Exp $ -->
|
||||||
<!--
|
<!--
|
||||||
|
|
||||||
Typical markup:
|
Typical markup:
|
||||||
@ -62,24 +62,20 @@ links to the main documentation.
|
|||||||
|
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>
|
<para>
|
||||||
Fix <literal>SELECT</> ... <literal>LIMIT NULL</> to behave as
|
Fix crash with <literal>SELECT</> ... <literal>LIMIT ALL</> (also
|
||||||
<literal>LIMIT ALL</> (Tom)
|
<literal>LIMIT NULL</>) (Tom)
|
||||||
</para>
|
|
||||||
|
|
||||||
<para>
|
|
||||||
A bug in 8.2.0 caused the server to crash.
|
|
||||||
</para>
|
</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
|
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>
|
<para>
|
||||||
<filename>/contrib/tsearch2</> fixes (Teodor)
|
<filename>Several /contrib/tsearch2</> fixes (Teodor)
|
||||||
</para>
|
</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
|
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>
|
<para>
|
||||||
Fix WIN32 server log messages coming from the operating system to use
|
On Windows, make log messages coming from the operating system use
|
||||||
<acronym>ASCII</> encoding (Hiroshi Saito)
|
<acronym>ASCII</> encoding (Hiroshi Saito)
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
@ -91,14 +87,31 @@ links to the main documentation.
|
|||||||
|
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>
|
<para>
|
||||||
Fix WIN32 linking of <application>pg_dump</> using <filename>win32.mak</>
|
Fix Windows linking of <application>pg_dump</> using
|
||||||
|
<filename>win32.mak</>
|
||||||
(Hiroshi Saito)
|
(Hiroshi Saito)
|
||||||
</para>
|
</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
|
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>
|
<para>
|
||||||
Various fixes for outer join queries (Tom)
|
Fix planner mistakes for outer join queries (Tom)
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
|
|
||||||
|
<listitem>
|
||||||
|
<para>
|
||||||
|
Fix several problems in queries involving sub-SELECTs (Tom)
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
|
|
||||||
|
<listitem>
|
||||||
|
<para>
|
||||||
|
Fix potential crash in SPI during subtransaction abort (Tom)
|
||||||
|
</para>
|
||||||
|
|
||||||
|
<para>
|
||||||
|
This affects all PL functions since they all use SPI.
|
||||||
</para>
|
</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
|
|
||||||
@ -122,8 +135,8 @@ links to the main documentation.
|
|||||||
|
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>
|
<para>
|
||||||
Have <application>psql</> print multi-byte combining characters, rather
|
Have <application>psql</> print multi-byte combining characters as
|
||||||
than output as <literal>\u</> (Tom)
|
before, rather than output as <literal>\u</> (Tom)
|
||||||
</para>
|
</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
|
|
||||||
@ -137,6 +150,18 @@ links to the main documentation.
|
|||||||
</para>
|
</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
|
|
||||||
|
<listitem>
|
||||||
|
<para>
|
||||||
|
Make <application>pg_dumpall</> assume that databases have public
|
||||||
|
<literal>CONNECT</> privilege, when dumping from a pre-8.2 server (Tom)
|
||||||
|
</para>
|
||||||
|
|
||||||
|
<para>
|
||||||
|
This preserves the previous behavior that anyone can connect to a
|
||||||
|
database if allowed by <filename>pg_hba.conf</>.
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
|
|
||||||
</itemizedlist>
|
</itemizedlist>
|
||||||
|
|
||||||
</sect2>
|
</sect2>
|
||||||
@ -399,7 +424,9 @@ links to the main documentation.
|
|||||||
|
|
||||||
<para>
|
<para>
|
||||||
This allows the postmaster to pass arguments to each backend
|
This allows the postmaster to pass arguments to each backend
|
||||||
without using <literal>-o</>.
|
without using <literal>-o</>. Note that some options are now
|
||||||
|
only available as long-form options, because there were conflicting
|
||||||
|
single-letter options.
|
||||||
</para>
|
</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
|
|
||||||
@ -2730,29 +2757,59 @@ links to the main documentation.
|
|||||||
|
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>
|
<para>
|
||||||
Fix <application>pg_restore</> so it can restore a tar-format backup
|
Fix <application>pg_restore</> to handle a tar-format backup
|
||||||
that contains large object comments (Tom)
|
that contains large objects (blobs) with comments (Tom)
|
||||||
</para>
|
</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
|
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>
|
<para>
|
||||||
Fix <link linkend="SQL-VACUUM"><command>VACUUM</></link> to recover from
|
Fix <quote>failed to re-find parent key</> errors in
|
||||||
a rare problem during index page deletion/split (Tom)
|
<command>VACUUM</> (Tom)
|
||||||
</para>
|
</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
|
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>
|
<para>
|
||||||
Fix point-in-time-recovery bug where stale status files could prevent
|
Clean out <filename>pg_internal.init</> cache files during server
|
||||||
restore (Simon, Tom)
|
restart (Simon)
|
||||||
|
</para>
|
||||||
|
|
||||||
|
<para>
|
||||||
|
This avoids a hazard that the cache files might contain stale
|
||||||
|
data after PITR recovery.
|
||||||
</para>
|
</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
|
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>
|
<para>
|
||||||
Fix error when constructing an <literal>ARRAY[]</> made up of multiple empty
|
Fix race condition for truncation of a large relation across a
|
||||||
elements (Tom)
|
gigabyte boundary by <command>VACUUM</> (Tom)
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
|
|
||||||
|
<listitem>
|
||||||
|
<para>
|
||||||
|
Fix bug causing needless deadlock errors on row-level locks (Tom)
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
|
|
||||||
|
<listitem>
|
||||||
|
<para>
|
||||||
|
Fix bugs affecting multi-gigabyte hash indexes (Tom)
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
|
|
||||||
|
<listitem>
|
||||||
|
<para>
|
||||||
|
Fix possible deadlock in Windows signal handling (Teodor)
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
|
|
||||||
|
<listitem>
|
||||||
|
<para>
|
||||||
|
Fix error when constructing an <literal>ARRAY[]</> made up of multiple
|
||||||
|
empty elements (Tom)
|
||||||
</para>
|
</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
|
|
||||||
@ -2764,28 +2821,7 @@ links to the main documentation.
|
|||||||
|
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>
|
<para>
|
||||||
Improve savepoint and multi-transction row locking algorithms to avoid
|
Fix for Darwin (OS X) compilation (Tom)
|
||||||
erroneous deadlock cases (Tom)
|
|
||||||
</para>
|
|
||||||
</listitem>
|
|
||||||
|
|
||||||
<listitem>
|
|
||||||
<para>
|
|
||||||
Fix problem with extending hash indexes that span multiple 1-gigabyte
|
|
||||||
segments (Tom)
|
|
||||||
</para>
|
|
||||||
</listitem>
|
|
||||||
|
|
||||||
<listitem>
|
|
||||||
<para>
|
|
||||||
Fix problem where truncation of a multi-gigabyte table might cause
|
|
||||||
consistency problems with other backends (Tom)
|
|
||||||
</para>
|
|
||||||
</listitem>
|
|
||||||
|
|
||||||
<listitem>
|
|
||||||
<para>
|
|
||||||
Fix for Darwin/OS-X compiles (Tom)
|
|
||||||
</para>
|
</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
|
|
||||||
@ -2800,22 +2836,7 @@ links to the main documentation.
|
|||||||
<para>
|
<para>
|
||||||
This is because <link
|
This is because <link
|
||||||
linkend="guc-lc-numeric"><varname>lc_numeric</></link> can potentially
|
linkend="guc-lc-numeric"><varname>lc_numeric</></link> can potentially
|
||||||
change the output of the functions.
|
change the output of these functions.
|
||||||
</para>
|
|
||||||
</listitem>
|
|
||||||
|
|
||||||
<listitem>
|
|
||||||
<para>
|
|
||||||
Update timezone database, particularly for Western Australia,
|
|
||||||
which has a new daylight savings date (Tom)
|
|
||||||
</para>
|
|
||||||
</listitem>
|
|
||||||
|
|
||||||
<listitem>
|
|
||||||
<para>
|
|
||||||
Document a risk that if a row is locked inside multiple sub-transactions
|
|
||||||
in the same transaction, and a sub-transaction is rolled back, the row
|
|
||||||
lock is lost (Tom)
|
|
||||||
</para>
|
</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
|
|
||||||
@ -2829,6 +2850,17 @@ links to the main documentation.
|
|||||||
</para>
|
</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
|
|
||||||
|
<listitem>
|
||||||
|
<para>
|
||||||
|
Update timezone database
|
||||||
|
</para>
|
||||||
|
|
||||||
|
<para>
|
||||||
|
This affects Australian and Canadian daylight-savings rules in
|
||||||
|
particular.
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
|
|
||||||
</itemizedlist>
|
</itemizedlist>
|
||||||
|
|
||||||
</sect2>
|
</sect2>
|
||||||
@ -5535,8 +5567,27 @@ psql -t -f fixseq.sql db1 | psql -e db1
|
|||||||
|
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>
|
<para>
|
||||||
Fix <link linkend="SQL-VACUUM"><command>VACUUM</></link> to recover from
|
Fix <quote>failed to re-find parent key</> errors in
|
||||||
a rare problem during index page deletion/split (Tom)
|
<command>VACUUM</> (Tom)
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
|
|
||||||
|
<listitem>
|
||||||
|
<para>
|
||||||
|
Fix race condition for truncation of a large relation across a
|
||||||
|
gigabyte boundary by <command>VACUUM</> (Tom)
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
|
|
||||||
|
<listitem>
|
||||||
|
<para>
|
||||||
|
Fix bugs affecting multi-gigabyte hash indexes (Tom)
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
|
|
||||||
|
<listitem>
|
||||||
|
<para>
|
||||||
|
Fix possible deadlock in Windows signal handling (Teodor)
|
||||||
</para>
|
</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
|
|
||||||
@ -5553,20 +5604,6 @@ psql -t -f fixseq.sql db1 | psql -e db1
|
|||||||
</para>
|
</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
|
|
||||||
<listitem>
|
|
||||||
<para>
|
|
||||||
Fix problem with extending hash indexes that span multiple 1-gigabyte
|
|
||||||
segments (Tom)
|
|
||||||
</para>
|
|
||||||
</listitem>
|
|
||||||
|
|
||||||
<listitem>
|
|
||||||
<para>
|
|
||||||
Fix problem where truncation of a multi-gigabyte table might cause
|
|
||||||
consistency problems with other backends (Tom)
|
|
||||||
</para>
|
|
||||||
</listitem>
|
|
||||||
|
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>
|
<para>
|
||||||
<function>to_number()</> and <function>to_char(numeric)</>
|
<function>to_number()</> and <function>to_char(numeric)</>
|
||||||
@ -5578,22 +5615,7 @@ psql -t -f fixseq.sql db1 | psql -e db1
|
|||||||
<para>
|
<para>
|
||||||
This is because <link
|
This is because <link
|
||||||
linkend="guc-lc-numeric"><varname>lc_numeric</></link> can potentially
|
linkend="guc-lc-numeric"><varname>lc_numeric</></link> can potentially
|
||||||
change the output of the functions.
|
change the output of these functions.
|
||||||
</para>
|
|
||||||
</listitem>
|
|
||||||
|
|
||||||
<listitem>
|
|
||||||
<para>
|
|
||||||
Update timezone database, particularly for Western Australia,
|
|
||||||
which has a new daylight savings date (Tom)
|
|
||||||
</para>
|
|
||||||
</listitem>
|
|
||||||
|
|
||||||
<listitem>
|
|
||||||
<para>
|
|
||||||
Document a risk that if a row is locked inside multiple sub-transactions
|
|
||||||
in the same transaction, and a sub-transaction is rolled back, the row
|
|
||||||
lock is lost (Tom)
|
|
||||||
</para>
|
</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
|
|
||||||
@ -5607,6 +5629,17 @@ psql -t -f fixseq.sql db1 | psql -e db1
|
|||||||
</para>
|
</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
|
|
||||||
|
<listitem>
|
||||||
|
<para>
|
||||||
|
Update timezone database
|
||||||
|
</para>
|
||||||
|
|
||||||
|
<para>
|
||||||
|
This affects Australian and Canadian daylight-savings rules in
|
||||||
|
particular.
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
|
|
||||||
</itemizedlist>
|
</itemizedlist>
|
||||||
|
|
||||||
</sect2>
|
</sect2>
|
||||||
@ -8860,22 +8893,21 @@ typedefs (Michael)</para></listitem>
|
|||||||
|
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>
|
<para>
|
||||||
Fix <link linkend="SQL-VACUUM"><command>VACUUM</></link> to recover from
|
Fix <quote>failed to re-find parent key</> errors in
|
||||||
a rare problem during index page deletion/split (Tom)
|
<command>VACUUM</> (Tom)
|
||||||
</para>
|
</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
|
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>
|
<para>
|
||||||
Fix error when constructing an <literal>ARRAY[]</> made up of multiple empty
|
Fix bugs affecting multi-gigabyte hash indexes (Tom)
|
||||||
elements (Tom)
|
|
||||||
</para>
|
</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
|
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>
|
<para>
|
||||||
Fix problem with extending hash indexes that span multiple 1-gigabyte
|
Fix error when constructing an <literal>ARRAY[]</> made up of multiple
|
||||||
segments (Tom)
|
empty elements (Tom)
|
||||||
</para>
|
</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
|
|
||||||
@ -8890,7 +8922,7 @@ typedefs (Michael)</para></listitem>
|
|||||||
<para>
|
<para>
|
||||||
This is because <link
|
This is because <link
|
||||||
linkend="guc-lc-numeric"><varname>lc_numeric</></link> can potentially
|
linkend="guc-lc-numeric"><varname>lc_numeric</></link> can potentially
|
||||||
change the output of the functions.
|
change the output of these functions.
|
||||||
</para>
|
</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
|
|
||||||
@ -11907,7 +11939,7 @@ DROP SCHEMA information_schema CASCADE;
|
|||||||
<para>
|
<para>
|
||||||
This is because <link
|
This is because <link
|
||||||
linkend="guc-lc-numeric"><varname>lc_numeric</></link> can potentially
|
linkend="guc-lc-numeric"><varname>lc_numeric</></link> can potentially
|
||||||
change the output of the functions.
|
change the output of these functions.
|
||||||
</para>
|
</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user