Third pass on 9.6.3 release notes.
authorTom Lane
Sun, 7 May 2017 18:43:04 +0000 (14:43 -0400)
committerTom Lane
Sun, 7 May 2017 18:43:04 +0000 (14:43 -0400)
Add updates for recent commits.

In passing, credit Etsuro Fujita for his work on the postgres_fdw
query cancel feature in 9.6; I seem to have missed that in the
original drafting of the 9.6 notes.

doc/src/sgml/release-9.6.sgml

index 69481530659f1cdce1dfe60fa7d2cc80c9eab695..b6cc481494f54ac5d64849c5f98e1681145c1788 100644 (file)
@@ -245,6 +245,24 @@ Branch: REL9_5_STABLE [6f0f98bb0] 2017-04-17 15:29:00 -0400
 
     
 
+     
+      Use the correct sub-expression when applying a FOR ALL
+      row-level-security policy (Stephen Frost)
+     
+
+     
+      In some cases the WITH CHECK restriction would be applied
+      when the USING restriction is more appropriate.
+     
+    
+
+    
+
      
-      Improve performance of pg_timezone_names view (Tom Lane)
+      Improve performance of pg_timezone_names view
+      (Tom Lane, David Rowley)
      
     
 
@@ -826,6 +851,26 @@ Branch: REL9_6_STABLE [86e640a69] 2017-04-26 09:14:21 -0400
 
     
 
+     
+      In contrib/postgres_fdw,
+      transmit query cancellation requests to the remote server
+      (Michael Paquier, Etsuro Fujita)
+     
+
+     
+      Previously, a local query cancellation request did not cause an
+      already-sent remote query to terminate early.  This is a back-patch
+      of work originally done for 9.6.
+     
+    
+
+    
+
      
       Sync our copy of the timezone library with IANA release tzcode2017b
@@ -910,6 +961,38 @@ Branch: REL9_2_STABLE [c96ccc40e] 2017-05-01 11:54:08 -0400
      
     
 
+    
+
+     
+      Use correct daylight-savings rules for POSIX-style time zone names
+      in MSVC builds (David Rowley)
+     
+
+     
+      The Microsoft MSVC build scripts neglected to install
+      the posixrules file in the timezone directory tree.
+      This resulted in the timezone code falling back to its built-in
+      rule about what DST behavior to assume for a POSIX-style time zone
+      name.  For historical reasons that still corresponds to the DST rules
+      the USA was using before 2007 (i.e., change on first Sunday in April
+      and last Sunday in October).  With this fix, a POSIX-style zone name
+      will use the current and historical DST transition dates of
+      the US/Eastern zone.  If you don't want that, remove
+      the posixrules file, or replace it with a copy of some
+      other zone file (see ).  Note that
+      due to caching, you may need to restart the server to get such changes
+      to take effect.
+     
+    
+
    
 
   
@@ -6679,7 +6762,7 @@ This commit is also listed under libpq and PL/pgSQL
 -->
        
         Transmit query cancellation requests to the remote server
-        (Michael Paquier)
+        (Michael Paquier, Etsuro Fujita)