From: Bruce Momjian Date: Wed, 29 Oct 2003 20:38:19 +0000 (+0000) Subject: Add first release note detail item. X-Git-Tag: REL7_4_RC1~48 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=1a2be80ee7e361da6887b03359135fb03e520550;p=thirdparty%2Fpostgresql.git Add first release note detail item. --- diff --git a/doc/src/sgml/release.sgml b/doc/src/sgml/release.sgml index 91439c17f1e..afd5f8ffb3f 100644 --- a/doc/src/sgml/release.sgml +++ b/doc/src/sgml/release.sgml @@ -1,5 +1,5 @@ @@ -15,6 +15,15 @@ $Header: /cvsroot/pgsql/doc/src/sgml/release.sgml,v 1.218 2003/10/27 02:51:39 mo Performance IN/NOT IN subqueries are now much more efficient + + + In previous releases, IN/NOT IN subqueries were joined to the + upper query by sequentially scanning the subquery looking for + a join. The 7.4 code uses the same sophisticated techniques + used by ordinary joins and so is much faster, and is now faster + than EXISTS subqueries. + + Improved GROUP BY processing by using hash buckets