Skip to content

Commit e0e6946

Browse files
committed
Add update of HISTORY file for 7.0.3.
1 parent 8399324 commit e0e6946

File tree

2 files changed

+103
-25
lines changed

2 files changed

+103
-25
lines changed

HISTORY

Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,61 @@
22
Release Notes
33
------------------------------------------------------------------------
44

5+
Release 7.0.3
6+
7+
This has a variety of fixes from 7.0.2.
8+
9+
Migration to v7.0.3
10+
11+
A dump/restore is not required for those running 7.0.*.
12+
13+
Changes
14+
-------
15+
Jdbc fixes (Peter)
16+
Large object fix (Tom)
17+
Fix lean in COPY WITH OIDS leak (Tom)
18+
Fix backwards-index-scan (Tom)
19+
Fix SELECT ... FOR UPDATE so it checks for duplicate keys (Hiroshi)
20+
Add --enable-syslog to configure (Marc)
21+
Fix abort transaction at backend exit in rare cases (Tom)
22+
Fix for psql \l+ when multi-byte enabled (Tatsuo)
23+
Allow PL/pgSQL to accept non ascii identifiers (Tatsuo)
24+
Make vacuum always flush buffers (Tom)
25+
Fix to allow cancel while waiting for a lock (Hiroshi)
26+
Fix for memory aloocation problem in user authentication code (Tom)
27+
Remove bogus use of int4out() (Tom)
28+
Fixes for multiple subqueries in COALESCE or BETWEEN (Tom)
29+
Fix for failure of triggers on heap open in certain cases (Jeroen van
30+
Vianen)
31+
Fix for erroneous selectivity of not-equals (Tom)
32+
Fix for erroneous use of strcmp() (Tom)
33+
Fix for bug where storage manager accesses items beyond end of file
34+
(Tom)
35+
Fix to include kernel errno message in all smgr elog messages (Tom)
36+
Fix for '.' not in PATH at build time (SL Baur)
37+
Fix for out-of-file-descriptors error (Tom)
38+
Fix to make pg_dump dump 'iscachable' flag for functions (Tom)
39+
Fix for subselect in targetlist of Append node (Tom)
40+
Fix for mergejoin plans (Tom)
41+
Fix TRUNCATE failure on relations with indexes (Tom)
42+
Avoid database-wide restart on write error (Hiroshi)
43+
Fix nodeMaterial to honor chgParam by recomputing its output (Tom)
44+
Fix VACUUM problem with moving chain of update tuples when source and
45+
destination of a tuple lie on the same page (Tom)
46+
Fix user.c CommandCounterIncrement (Tom)
47+
Fix for AM/PM boundary problem in to_char() (Karel Zak)
48+
Fix TIME aggregate handling (Tom)
49+
Fix to_char() to avoid coredump on NULL input (Tom)
50+
Buffer fix (Tom)
51+
Fix for inserting/copying longer multibyte strings into char() data
52+
types (Tatsuo)
53+
54+
55+
------------------------------------------------------------------------
56+
Release 7.0.2
57+
Release Notes
58+
------------------------------------------------------------------------
59+
560
Release 7.0.2
661

762
This is a repackaging of 7.0.1 with added documentation.

doc/src/sgml/release.sgml

Lines changed: 48 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
<!--
2-
$Header: /cvsroot/pgsql/doc/src/sgml/release.sgml,v 1.61 2000/10/05 19:48:16 momjian Exp $
2+
$Header: /cvsroot/pgsql/doc/src/sgml/release.sgml,v 1.62 2000/11/10 19:41:26 momjian Exp $
33
-->
44

55
<chapter id="release">
66
<title>Release Notes</title>
77

8-
<sect1 id="release-7-1">
9-
<title>Release 7.1</title>
8+
<sect1>
9+
<title>Release 7.0.3</title>
1010
<!--
1111
<docinfo>
1212
<authorgroup>
@@ -15,33 +15,21 @@ $Header: /cvsroot/pgsql/doc/src/sgml/release.sgml,v 1.61 2000/10/05 19:48:16 mom
1515
<surname>Momjian</surname>
1616
</author>
1717
</authorgroup>
18-
<date>2000-07-13</date>
18+
<date>2000-11-11</date>
1919
</docinfo>
2020
-->
2121

2222
<para>
23-
Release date 2000-09-01.
24-
Major changes in this release:
25-
26-
<variablelist>
27-
<varlistentry>
28-
<term>
29-
Nested block comments
30-
</term>
31-
<listitem>
32-
<para>
33-
SQL99 defines C-style block comments, and allows them to be nested.
34-
</para>
35-
</listitem>
36-
</varlistentry>
37-
</variablelist>
23+
Release date 2000-11-04. This has a variety of fixes from 7.0.2.
3824
</para>
3925

26+
4027
<sect2>
41-
<title>Migration to v7.1</title>
28+
<title>Migration to v7.0.3</title>
4229

4330
<para>
44-
A dump/restore is required for those running any previous version.
31+
A dump/restore is <emphasis>not</emphasis> required for those running
32+
v7.0.*.
4533
</para>
4634
</sect2>
4735

@@ -50,15 +38,50 @@ $Header: /cvsroot/pgsql/doc/src/sgml/release.sgml,v 1.61 2000/10/05 19:48:16 mom
5038

5139
<para>
5240
<programlisting>
53-
Implement WITHOUT TIME ZONE date/time type qualifier per SQL99 (Thomas)
54-
Implement nested block comments per SQL99 (Thomas)
55-
Implement SET SESSION CHARACTERISTICS per SQL99 (Thomas)
56-
Set session-wide transaction mode READ COMMITTED or SERIALIZABLE (Thomas)
41+
Jdbc fixes (Peter)
42+
Large object fix (Tom)
43+
Fix lean in COPY WITH OIDS leak (Tom)
44+
Fix backwards-index-scan (Tom)
45+
Fix SELECT ... FOR UPDATE so it checks for duplicate keys (Hiroshi)
46+
Add --enable-syslog to configure (Marc)
47+
Fix abort transaction at backend exit in rare cases (Tom)
48+
Fix for psql \l+ when multi-byte enabled (Tatsuo)
49+
Allow PL/pgSQL to accept non ascii identifiers (Tatsuo)
50+
Make vacuum always flush buffers (Tom)
51+
Fix to allow cancel while waiting for a lock (Hiroshi)
52+
Fix for memory aloocation problem in user authentication code (Tom)
53+
Remove bogus use of int4out() (Tom)
54+
Fixes for multiple subqueries in COALESCE or BETWEEN (Tom)
55+
Fix for failure of triggers on heap open in certain cases (Jeroen van
56+
Vianen)
57+
Fix for erroneous selectivity of not-equals (Tom)
58+
Fix for erroneous use of strcmp() (Tom)
59+
Fix for bug where storage manager accesses items beyond end of file
60+
(Tom)
61+
Fix to include kernel errno message in all smgr elog messages (Tom)
62+
Fix for '.' not in PATH at build time (SL Baur)
63+
Fix for out-of-file-descriptors error (Tom)
64+
Fix to make pg_dump dump 'iscachable' flag for functions (Tom)
65+
Fix for subselect in targetlist of Append node (Tom)
66+
Fix for mergejoin plans (Tom)
67+
Fix TRUNCATE failure on relations with indexes (Tom)
68+
Avoid database-wide restart on write error (Hiroshi)
69+
Fix nodeMaterial to honor chgParam by recomputing its output (Tom)
70+
Fix VACUUM problem with moving chain of update tuples when source and
71+
destination of a tuple lie on the same page (Tom)
72+
Fix user.c CommandCounterIncrement (Tom)
73+
Fix for AM/PM boundary problem in to_char() (Karel Zak)
74+
Fix TIME aggregate handling (Tom)
75+
Fix to_char() to avoid coredump on NULL input (Tom)
76+
Buffer fix (Tom)
77+
Fix for inserting/copying longer multibyte strings into char() data
78+
types (Tatsuo)
5779
</programlisting>
5880
</para>
5981
</sect2>
6082
</sect1>
6183

84+
6285
<sect1 id="release-7-0-2">
6386
<title>Release 7.0.2</title>
6487
<!--

0 commit comments

Comments
 (0)