File tree 2 files changed +24
-3
lines changed 2 files changed +24
-3
lines changed Original file line number Diff line number Diff line change 3
3
4
4
Release 7.2.8
5
5
6
- Release date: 2005-05-05
6
+ Release date: 2005-05-09
7
7
8
8
This release contains a variety of fixes from 7.2.7, including one
9
9
security-related issue.
16
16
17
17
Changes
18
18
19
+ * Repair ancient race condition that allowed a transaction to be
20
+ seen as committed for some purposes (eg SELECT FOR UPDATE)
21
+ slightly sooner than for other purposes
22
+ This is an extremely serious bug since it could lead to apparent
23
+ data inconsistencies being briefly visible to applications.
24
+ * Repair race condition between relation extension and VACUUM
25
+ This could theoretically have caused loss of a page's worth of
26
+ freshly-inserted data, although the scenario seems of very low
27
+ probability. There are no known cases of it having caused more
28
+ than an Assert failure.
19
29
* Fix EXTRACT(EPOCH) for TIME WITH TIME ZONE values
20
30
* Additional buffer overrun checks in plpgsql (Neil)
21
31
* Fix pg_dump to dump index names and trigger names containing %
Original file line number Diff line number Diff line change 1
1
<!--
2
- $Header: /cvsroot/pgsql/doc/src/sgml/release.sgml,v 1.115.2.12 2005/05/05 20 :10:06 tgl Exp $
2
+ $Header: /cvsroot/pgsql/doc/src/sgml/release.sgml,v 1.115.2.13 2005/05/09 00 :10:52 tgl Exp $
3
3
-->
4
4
5
5
<appendix id="release">
@@ -10,7 +10,7 @@ $Header: /cvsroot/pgsql/doc/src/sgml/release.sgml,v 1.115.2.12 2005/05/05 20:10:
10
10
11
11
<note>
12
12
<title>Release date</title>
13
- <simpara>2005-05-05 </simpara>
13
+ <simpara>2005-05-09 </simpara>
14
14
</note>
15
15
16
16
<para>
@@ -30,6 +30,17 @@ $Header: /cvsroot/pgsql/doc/src/sgml/release.sgml,v 1.115.2.12 2005/05/05 20:10:
30
30
<title>Changes</title>
31
31
32
32
<itemizedlist>
33
+ <listitem><para>Repair ancient race condition that allowed a transaction to be
34
+ seen as committed for some purposes (eg SELECT FOR UPDATE) slightly sooner
35
+ than for other purposes</para>
36
+ <para>This is an extremely serious bug since it could lead to apparent
37
+ data inconsistencies being briefly visible to applications.</para></listitem>
38
+ <listitem><para>Repair race condition between relation extension and
39
+ VACUUM</para>
40
+ <para>This could theoretically have caused loss of a page's worth of
41
+ freshly-inserted data, although the scenario seems of very low probability.
42
+ There are no known cases of it having caused more than an Assert failure.
43
+ </para></listitem>
33
44
<listitem><para>Fix <function>EXTRACT(EPOCH)</> for
34
45
<type>TIME WITH TIME ZONE</> values</para></listitem>
35
46
<listitem><para>Additional buffer overrun checks in plpgsql
You can’t perform that action at this time.
0 commit comments