Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 887edf4

Browse files
committed
Update release history for 7.2.4.
1 parent 26f5613 commit 887edf4

File tree

2 files changed

+92
-1
lines changed

2 files changed

+92
-1
lines changed

HISTORY

+49
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,27 @@
77
branch of PostgreSQL since version 7.3. For a complete list of
88
changes, consult the CVS logs.
99

10+
Explicit JOINs no longer constrain query plan, unless
11+
JOIN_COLLAPSE_LIMIT = 1
12+
Performance of "foo IN (SELECT ...)" queries has been considerably
13+
improved
14+
FETCH 0 now re-fetches cursor's current row, per SQL spec
15+
Revised executor state representation; plan trees are read-only
16+
to executor now
1017
Information schema
1118
Domains now support CHECK constraints
19+
psql backslash commands for listing conversions, casts, and schemas
20+
TRUNCATE TABLE is transaction-safe
21+
CLUSTER can re-cluster a previously clustered table, or all such tables
22+
Statement-level triggers
23+
System can use either hash- or sort-based strategy for grouped
24+
aggregation
25+
ON COMMIT options for temp tables
26+
extra_float_digits option allows pg_dump to dump float data accurately
27+
Long options for psql and pg_dump are now available on all platforms
28+
Read-only transactions
29+
Object owners can allow grantees to grant the privilege to others
30+
(grant option)
1231
_________________________________________________________________
1332

1433
Release 7.3.1
@@ -571,6 +590,36 @@ Contrib
571590
Move /contrib/pg_controldata, pg_resetxlog into main tree (Bruce)
572591
Fixes to /contrib/cube (Bruno Wolff)
573592
Improve /contrib/fulltextindex (Christopher)
593+
_________________________________________________________________
594+
595+
Release 7.2.4
596+
597+
Release date: 2003-01-30
598+
599+
This has a variety of fixes from 7.2.3, including fixes to prevent
600+
possible data loss.
601+
_________________________________________________________________
602+
603+
Migration to version 7.2.4
604+
605+
A dump/restore is *not* required for those running 7.2.X.
606+
_________________________________________________________________
607+
608+
Changes
609+
610+
Fix some additional cases of VACUUM "No one parent tuple was found"
611+
error
612+
Prevent VACUUM from being called inside a function (Bruce)
613+
Ensure pg_clog updates are sync'd to disk before marking checkpoint
614+
complete
615+
Avoid integer overflow during large hash joins
616+
Make GROUP commands work when pg_group.grolist is large enough
617+
to be toasted
618+
Fix errors in datetime tables; some timezone names weren't being
619+
recognized
620+
Fix integer overflows in circle_poly(), path_encode(), path_add()
621+
(Neil)
622+
Repair long-standing logic errors in lseg_eq(), lseg_ne(), lseg_center()
574623
_________________________________________________________________
575624

576625
Release 7.2.3

doc/src/sgml/release.sgml

+43-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!--
2-
$Header: /cvsroot/pgsql/doc/src/sgml/release.sgml,v 1.181 2003/01/25 23:10:27 tgl Exp $
2+
$Header: /cvsroot/pgsql/doc/src/sgml/release.sgml,v 1.182 2003/01/29 22:14:08 tgl Exp $
33
-->
44

55
<appendix id="release">
@@ -806,6 +806,48 @@ Improve /contrib/fulltextindex (Christopher)
806806
</sect1>
807807

808808

809+
<sect1 id="release-7-2-4">
810+
<title>Release 7.2.4</title>
811+
812+
<note>
813+
<title>Release date</title>
814+
<simpara>2003-01-30</simpara>
815+
</note>
816+
817+
<para>
818+
This has a variety of fixes from 7.2.3, including fixes to prevent
819+
possible data loss.
820+
</para>
821+
822+
823+
<sect2>
824+
<title>Migration to version 7.2.4</title>
825+
826+
<para>
827+
A dump/restore is <emphasis>not</emphasis> required for those running
828+
7.2.X.
829+
</para>
830+
</sect2>
831+
832+
<sect2>
833+
<title>Changes</title>
834+
835+
<para>
836+
<literallayout>
837+
Fix some additional cases of VACUUM "No one parent tuple was found" error
838+
Prevent VACUUM from being called inside a function (Bruce)
839+
Ensure pg_clog updates are sync'd to disk before marking checkpoint complete
840+
Avoid integer overflow during large hash joins
841+
Make GROUP commands work when pg_group.grolist is large enough to be toasted
842+
Fix errors in datetime tables; some timezone names weren't being recognized
843+
Fix integer overflows in circle_poly(), path_encode(), path_add() (Neil)
844+
Repair long-standing logic errors in lseg_eq(), lseg_ne(), lseg_center()
845+
</literallayout>
846+
</para>
847+
</sect2>
848+
</sect1>
849+
850+
809851
<sect1 id="release-7-2-3">
810852
<title>Release 7.2.3</title>
811853

0 commit comments

Comments
 (0)