Release note updates.
authorTom Lane
Mon, 6 Feb 2017 19:19:23 +0000 (14:19 -0500)
committerTom Lane
Mon, 6 Feb 2017 19:19:23 +0000 (14:19 -0500)
Add item for last-minute CREATE INDEX CONCURRENTLY fix.
Repair a couple of misspellings of patch authors' names.

Back-branch updates will follow shortly, but I thought I'd
commit this separately just to make it more visible.

doc/src/sgml/release-9.6.sgml

index 97d1f515150ace02f3d8ac17881858970e893ce4..e6c4fa8f9aec0ced1e3c3e435395f89b2310d195 100644 (file)
    
 
    
-    However, if you are upgrading from a version earlier than 9.6.1,
+    However, if your installation has been affected by the bug described in
+    the first changelog entry below, then after updating you may need
+    to take action to repair corrupted indexes.
+   
+
+   
+    Also, if you are upgrading from a version earlier than 9.6.1,
     see .
    
   
     
 
+     
+      Fix a race condition that could cause indexes built
+      with CREATE INDEX CONCURRENTLY to be corrupt
+      (Pavan Deolasee, Tom Lane)
+     
+
+     
+      If CREATE INDEX CONCURRENTLY was used to build an index
+      that depends on a column not previously indexed, then rows inserted
+      or updated by transactions that ran concurrently with
+      the CREATE INDEX command could have received incorrect
+      index entries.  If you suspect this may have happened, the most
+      reliable solution is to rebuild affected indexes after installing
+      this update.
+     
+    
+
+    
+
      
       Allow statements prepared with PREPARE to be given
-      parallel plans (Amit Kapila, Tobias Bussman)
+      parallel plans (Amit Kapila, Tobias Bussmann)
      
     
 
@@ -1352,7 +1385,7 @@ Branch: REL9_6_STABLE [b98e5513f] 2016-12-21 11:11:36 -0500
 -->
      
       Fix possible miss of socket read events while waiting on Windows
-      (Amit Kapial)
+      (Amit Kapila)