Update 9.0 release notes to current.
authorBruce Momjian
Thu, 3 Jun 2010 16:33:36 +0000 (16:33 +0000)
committerBruce Momjian
Thu, 3 Jun 2010 16:33:36 +0000 (16:33 +0000)
doc/src/sgml/release-9.0.sgml

index ce684dba4cf463bcd99f2815c035908766712a67..52902869c1f7520100853735d8b579cf493d0223 100644 (file)
@@ -1,4 +1,4 @@
-
+
 
  
   Release 9.0
@@ -179,7 +179,7 @@ recovery_connections -> hot_standby
   
 
   Migration to Version 9.0
-  CURRENT AS OF 2010-05-12
+  CURRENT AS OF 2010-06-03
 
   
    A dump/restore using pg_dump is
@@ -588,7 +588,6 @@ recovery_connections -> hot_standby
       
      
 
-
      
       
        Allow LDAP
@@ -616,6 +615,13 @@ recovery_connections -> hot_standby
       
      
 
+     
+      
+       Pass trusted SSL root certificate names to the client so the client
+       can return an appropriate client certificate (Craig Ringer)
+      
+     
+
     
 
    
@@ -1336,8 +1342,8 @@ recovery_connections -> hot_standby
 
      
       For example, if a function is defined to take parameters a
-      and b, it can be called with func(7 AS a, 12
-      AS b) or func(12 AS b, 7 AS a).
+      and b, it can be called with func(a := 7, b
+      := 12) or func(b := 12, a := 7).
      
     
 
@@ -2097,6 +2103,17 @@ recovery_connections -> hot_standby
       
      
 
+     
+      
+       Load SSL certificate chain (Tom Lane)
+      
+
+      
+       This improves handling of indirectly-signed SSL client
+       certificates.
+      
+     
+
     
 
    
@@ -2161,6 +2178,13 @@ recovery_connections -> hot_standby
       
      
 
+     
+      
+       Support long long types on platforms that already have 64-bit
+       longs (Michael Meskes))
+      
+     
+
      
 
      
@@ -2528,7 +2552,7 @@ recovery_connections -> hot_standby
        C++ usage difficult in backend code, there are
        still other complexities when using C++ for backend
        functions. extern "C" { } is still necessary in
-       appropriate places.
+       appropriate places (see ).