Jan:
authorBruce Momjian <[email protected]>
Thu, 12 Feb 2004 20:18:13 +0000 (20:18 +0000)
committerBruce Momjian <[email protected]>
Thu, 12 Feb 2004 20:18:13 +0000 (20:18 +0000)
someone asked me about the FK deadlock fix, mentioned in the 7.3.3
release notes as 3rd change:

     http://www.postgresql.org/docs/current/static/release-7-3-3.html

Actually, that fix was available with 7.4, not 7.3. Don't know if we can
retroactively change the release-notes though.

HISTORY
doc/src/sgml/release.sgml

diff --git a/HISTORY b/HISTORY
index c40ff2608866bb5dd261a6bb7cb7f3fb0b8cd9a0..037010b135decf89bbfc8ef9cb912a20485b7ebd 100644 (file)
--- a/HISTORY
+++ b/HISTORY
@@ -462,6 +462,8 @@ Query Changes
        In prior releases, LIMIT/OFFSET could only use constants, not
        expressions.
      * Implement CREATE TABLE AS EXECUTE (Neil, Peter)
+     * Don't lock referenced row when "UPDATE" doesn't change foreign
+       key's value (Jan)
      _________________________________________________________________
    
 Object Manipulation Changes
@@ -938,8 +940,6 @@ Changes
      * Repair sometimes-incorrect computation of StartUpID after a crash
      * Avoid slowness with lots of deferred triggers in one transaction
        (Stephan)
-     * Don't lock referenced row when "UPDATE" doesn't change foreign
-       key's value (Jan)
      * Use "-fPIC" not "-fpic" on Sparc (Tom Callaway)
      * Repair lack of schema-awareness in contrib/reindexdb
      * Fix contrib/intarray error for zero-element result array (Teodor)
index 242942690a63932ca1a69366fc441c163881ecea..203c04bfc68448f12a12792ca37cbe65e5f0fc16 100644 (file)
@@ -1054,6 +1054,7 @@ DROP SCHEMA information_schema CASCADE;
     <listitem>
      <para>Implement <literal>CREATE TABLE AS EXECUTE</literal> (Neil, Peter)</para>
     </listitem>
+    <listitem><para>Don't lock referenced row when <command>UPDATE</command> doesn't change foreign key's value (Jan)</para></listitem>
    </itemizedlist>
   </sect3>
 
@@ -2086,7 +2087,6 @@ DROP SCHEMA information_schema CASCADE;
 <itemizedlist>
 <listitem><para>Repair sometimes-incorrect computation of StartUpID after a crash</para></listitem>
 <listitem><para>Avoid slowness with lots of deferred triggers in one transaction (Stephan)</para></listitem>
-<listitem><para>Don't lock referenced row when <command>UPDATE</command> doesn't change foreign key's value (Jan)</para></listitem>
 <listitem><para>Use <command>-fPIC</command> not <command>-fpic</command> on Sparc (Tom Callaway)</para></listitem>
 <listitem><para>Repair lack of schema-awareness in contrib/reindexdb</para></listitem>
 <listitem><para>Fix contrib/intarray error for zero-element result array (Teodor)</para></listitem>