From d7f5817a9bea00ee806c75d4d1fa045dcdaad9b4 Mon Sep 17 00:00:00 2001 From: Tom Lane Date: Sat, 12 Jun 2004 19:30:36 +0000 Subject: [PATCH] Some editorializing on 7.4.3 release notes. --- doc/src/sgml/release.sgml | 34 ++++++++++++++++++++++------------ 1 file changed, 22 insertions(+), 12 deletions(-) diff --git a/doc/src/sgml/release.sgml b/doc/src/sgml/release.sgml index 293292bee92..867098d5fd4 100644 --- a/doc/src/sgml/release.sgml +++ b/doc/src/sgml/release.sgml @@ -1,5 +1,5 @@ @@ -32,22 +32,32 @@ $PostgreSQL: pgsql/doc/src/sgml/release.sgml,v 1.235.2.24 2004/06/12 04:08:39 mo -Fix temporary memory leak when using hashed aggregates (Tom) -Ecpg fixes, including those for Informix compatibility (Michael) +Fix temporary memory leak when using non-hashed aggregates (Tom) +ECPG fixes, including some for Informix compatibility (Michael) Fixes for compiling with thread-safety, particularly Solaris (Bruce) -Fix error in termination of COPY IN mode when using old protocol (Tom) -Several pg_autovacuum fixes, including fixes for large oids, stability, temp tables, and debug fixes (Matthew T. O'Connor) -Fix problem with reading tar pg_dump's on NetBSD and BSD/OS (Bruce) +Fix error in COPY IN termination when using the old network protocol (ljb) +Several important fixes in pg_autovacuum, including fixes for +large tables, unsigned oids, stability, temp tables, and debug mode +(Matthew T. O'Connor) +Fix problem with reading tar-format dumps on NetBSD and BSD/OS (Bruce) Several JDBC fixes -Fix for ALTER SEQUENCE RESTART where last_value was equals restart value (Tom) -Support FULL JOIN with no join clauses, such as X FULL JOIN Y ON TRUE (Tom) -Fix a zero-column bug (Tom) -Improve handling of non-qualitified identifiers in GROUP BY clauses (Tom) -Do not allow NATURAL CROSS JOIN (Tom) -Add missing check for invalid protocol packet length in binary COPY (Tom) +Fix ALTER SEQUENCE RESTART where last_value equals the restart value (Tom) +Repair failure to recalculate nested sub-selects (Tom) +Fix problems with non-constant expressions in LIMIT/OFFSET +Support FULL JOIN with no join clause, such as X FULL JOIN Y ON TRUE (Tom) +Fix another zero-column table bug (Tom) +Improve handling of non-qualified identifiers in GROUP BY clauses in sub-selects (Tom) + +Select-list aliases within the sub-select will now take precedence over +names from outer query levels. + +Do not generate NATURAL CROSS JOIN when decompiling rules (Tom) +Add checks for invalid field length in binary COPY (Tom) This fixes a difficult-to-exploit security hole. +Avoid locking conflict between ANALYZE and LISTEN/NOTIFY +Numerous translation updates (various contributors)