Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commita57df8d

Browse files
committed
Update release history for releases 7.4.6, 7.3.8, 7.2.6.
1 parentc58675b commita57df8d

File tree

1 file changed

+171
-1
lines changed

1 file changed

+171
-1
lines changed

‎doc/src/sgml/release.sgml

Lines changed: 171 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!--
2-
$PostgreSQL: pgsql/doc/src/sgml/release.sgml,v 1.301 2004/10/08 15:03:25 tgl Exp $
2+
$PostgreSQL: pgsql/doc/src/sgml/release.sgml,v 1.302 2004/10/22 00:25:18 tgl Exp $
33
-->
44

55
<appendix id="release">
@@ -2096,6 +2096,76 @@ $PostgreSQL: pgsql/doc/src/sgml/release.sgml,v 1.301 2004/10/08 15:03:25 tgl Exp
20962096
</itemizedlist>
20972097
</sect3>
20982098

2099+
</sect2>
2100+
</sect1>
2101+
2102+
<sect1 id="release-7-4-6">
2103+
<title>Release 7.4.6</title>
2104+
2105+
<note>
2106+
<title>Release date</title>
2107+
<simpara>2004-10-22</simpara>
2108+
</note>
2109+
2110+
<para>
2111+
This release contains a variety of fixes from 7.4.5.
2112+
</para>
2113+
2114+
2115+
<sect2>
2116+
<title>Migration to version 7.4.6</title>
2117+
2118+
<para>
2119+
A dump/restore is not required for those running 7.4.X.
2120+
</para>
2121+
</sect2>
2122+
2123+
<sect2>
2124+
<title>Changes</title>
2125+
2126+
<itemizedlist>
2127+
<listitem><para>Repair possible failure to update hint bits on disk</para>
2128+
<para>
2129+
Under rare circumstances this oversight could lead to
2130+
<quote>could not access transaction status</> failures, which qualifies
2131+
it as a potential-data-loss bug.
2132+
</para></listitem>
2133+
<listitem><para>Ensure that hashed outer join does not miss tuples</para>
2134+
<para>
2135+
Very large left joins using a hash join plan could fail to output unmatched
2136+
left-side rows given just the right data distribution.
2137+
</para></listitem>
2138+
<listitem><para>Disallow running pg_ctl as root</para>
2139+
<para>
2140+
This is to guard against any possible security issues.
2141+
</para></listitem>
2142+
<listitem><para>Avoid using temp files in /tmp in make_oidjoins_check</para>
2143+
<para>
2144+
This has been reported as a security issue, though it's hardly worthy of
2145+
concern since there is no reason for non-developers to use this script anyway.
2146+
</para></listitem>
2147+
<listitem><para>Prevent forced backend shutdown from re-emitting prior command
2148+
result</para>
2149+
<para>
2150+
In rare cases, a client might think that its last command had succeeded when
2151+
it really had been aborted by forced database shutdown.
2152+
</para></listitem>
2153+
<listitem><para>Repair bug in pg_stat_get_backend_idset()</para>
2154+
<para>
2155+
This could lead to misbehavior in some of the system-statistics views.
2156+
</para></listitem>
2157+
<listitem><para>Fix small memory leak in postmaster</para></listitem>
2158+
<listitem><para>Fix <quote>expected both swapped tables to have TOAST
2159+
tables</> bug</para>
2160+
<para>
2161+
This could arise in cases such as CLUSTER after ALTER TABLE DROP COLUMN.
2162+
</para></listitem>
2163+
<listitem><para>Prevent <literal>pg_ctl restart</> from adding <literal>-D</> multiple times</para></listitem>
2164+
<listitem><para>Fix problem with NULL values in GiST indexes</para></listitem>
2165+
<listitem><para><literal>::</> is no longer interpreted as a variable in an
2166+
ECPG prepare statement</para></listitem>
2167+
</itemizedlist>
2168+
20992169
</sect2>
21002170
</sect1>
21012171

@@ -4352,6 +4422,56 @@ DROP SCHEMA information_schema CASCADE;
43524422
</sect2>
43534423
</sect1>
43544424

4425+
<sect1 id="release-7-3-8">
4426+
<title>Release 7.3.8</title>
4427+
4428+
<note>
4429+
<title>Release date</title>
4430+
<simpara>2004-10-22</simpara>
4431+
</note>
4432+
4433+
<para>
4434+
This release contains a variety of fixes from 7.3.7.
4435+
</para>
4436+
4437+
4438+
<sect2>
4439+
<title>Migration to version 7.3.8</title>
4440+
4441+
<para>
4442+
A dump/restore is not required for those running 7.3.X.
4443+
</para>
4444+
</sect2>
4445+
4446+
<sect2>
4447+
<title>Changes</title>
4448+
4449+
<itemizedlist>
4450+
<listitem><para>Repair possible failure to update hint bits on disk</para>
4451+
<para>
4452+
Under rare circumstances this oversight could lead to
4453+
<quote>could not access transaction status</> failures, which qualifies
4454+
it as a potential-data-loss bug.
4455+
</para></listitem>
4456+
<listitem><para>Ensure that hashed outer join does not miss tuples</para>
4457+
<para>
4458+
Very large left joins using a hash join plan could fail to output unmatched
4459+
left-side rows given just the right data distribution.
4460+
</para></listitem>
4461+
<listitem><para>Disallow running pg_ctl as root</para>
4462+
<para>
4463+
This is to guard against any possible security issues.
4464+
</para></listitem>
4465+
<listitem><para>Avoid using temp files in /tmp in make_oidjoins_check</para>
4466+
<para>
4467+
This has been reported as a security issue, though it's hardly worthy of
4468+
concern since there is no reason for non-developers to use this script anyway.
4469+
</para></listitem>
4470+
</itemizedlist>
4471+
4472+
</sect2>
4473+
</sect1>
4474+
43554475
<sect1 id="release-7-3-7">
43564476
<title>Release 7.3.7</title>
43574477

@@ -5407,6 +5527,56 @@ operations on bytea columns (Joe)</para></listitem>
54075527
</sect2>
54085528
</sect1>
54095529

5530+
<sect1 id="release-7-2-6">
5531+
<title>Release 7.2.6</title>
5532+
5533+
<note>
5534+
<title>Release date</title>
5535+
<simpara>2004-10-22</simpara>
5536+
</note>
5537+
5538+
<para>
5539+
This release contains a variety of fixes from 7.2.5.
5540+
</para>
5541+
5542+
5543+
<sect2>
5544+
<title>Migration to version 7.2.6</title>
5545+
5546+
<para>
5547+
A dump/restore is not required for those running 7.2.X.
5548+
</para>
5549+
</sect2>
5550+
5551+
<sect2>
5552+
<title>Changes</title>
5553+
5554+
<itemizedlist>
5555+
<listitem><para>Repair possible failure to update hint bits on disk</para>
5556+
<para>
5557+
Under rare circumstances this oversight could lead to
5558+
<quote>could not access transaction status</> failures, which qualifies
5559+
it as a potential-data-loss bug.
5560+
</para></listitem>
5561+
<listitem><para>Ensure that hashed outer join does not miss tuples</para>
5562+
<para>
5563+
Very large left joins using a hash join plan could fail to output unmatched
5564+
left-side rows given just the right data distribution.
5565+
</para></listitem>
5566+
<listitem><para>Disallow running pg_ctl as root</para>
5567+
<para>
5568+
This is to guard against any possible security issues.
5569+
</para></listitem>
5570+
<listitem><para>Avoid using temp files in /tmp in make_oidjoins_check</para>
5571+
<para>
5572+
This has been reported as a security issue, though it's hardly worthy of
5573+
concern since there is no reason for non-developers to use this script anyway.
5574+
</para></listitem>
5575+
<listitem><para>Update to newer versions of Bison</para></listitem>
5576+
</itemizedlist>
5577+
5578+
</sect2>
5579+
</sect1>
54105580

54115581
<sect1 id="release-7-2-5">
54125582
<title>Release 7.2.5</title>

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp