Update 9.0 release notes for changes since beta4.
authorTom Lane
Wed, 25 Aug 2010 00:47:57 +0000 (00:47 +0000)
committerTom Lane
Wed, 25 Aug 2010 00:47:57 +0000 (00:47 +0000)
Note: as usual, bug fixes that were also applied in back branches are not
considered material to include in a new major release's notes.

doc/src/sgml/release-9.0.sgml

index f13eb03c7715e8e68c64dc1216c669727c7ea164..1b29ed17552d8fec4813fc0bcd56986ff5851af4 100644 (file)
@@ -1,4 +1,4 @@
-
+
 
  
   Release 9.0
@@ -8,7 +8,7 @@
    2010-??-??
   
 
-  CURRENT AS OF 2010-07-29
+  CURRENT AS OF 2010-08-24
 
   
    Overview
      
     
 
+    
+     
+      Array input now considers only plain ASCII whitespace characters
+      to be potentially ignorable; it will never ignore non-ASCII characters,
+      even if they are whitespace according to some locales (Tom Lane)
+     
+
+     
+      This avoids some corner cases where array values could be interpreted
+      differently depending on the server's locale settings.
+     
+    
+
    
     
      Improve standards compliance of 
       
      
 
+     
+      
+       Fix failure of ALTER TABLE table ADD COLUMN
+       col serial when done by non-owner of table
+       (Tom Lane)
+      
+     
+
     
 
    
      
       
        Allow aggregate functions to use 
-       linkend="syntax-aggregates">ORDER BY (Andrew Gierth)
+       linkend="syntax-aggregates">ORDER BYlink> (Andrew Gierth)
       
 
       
@@ -2379,6 +2400,17 @@ if TG_OP = 'INSERT' AND NEW.col1 = ... then
       
      
 
+     
+      
+       pg_restore now complains if any command-line arguments
+       remain after the switches and optional file name (Tom Lane)
+      
+
+      
+       Previously, it silently ignored any such arguments.
+      
+     
+
     
 
    
@@ -3067,6 +3099,21 @@ if TG_OP = 'INSERT' AND NEW.col1 = ... then
       
      
 
+     
+      
+       Custom typanalyze functions should no longer rely on
+       VacAttrStats.attr to determine the type
+       of data they will be passed (Tom Lane)
+      
+
+      
+       This was changed to allow collection of statistics on index columns
+       for which the storage type is different from the underlying column
+       data type.  There are new fields that tell the actual datatype being
+       analyzed.
+      
+     
+