Update release notes for recent changes; also minor editorialization.
authorTom Lane
Mon, 22 Nov 2004 00:37:59 +0000 (00:37 +0000)
committerTom Lane
Mon, 22 Nov 2004 00:37:59 +0000 (00:37 +0000)
doc/src/sgml/release.sgml

index 39f6f763c9bdecfec00970377c1e04c88f18b2b3..dee389e31e1ab78dd09c7ba9ccc1085f98c3b4cb 100644 (file)
@@ -1,5 +1,5 @@
 
 
 
@@ -10,7 +10,7 @@ $PostgreSQL: pgsql/doc/src/sgml/release.sgml,v 1.310 2004/11/21 21:17:02 tgl Exp
 
   
    Release date
-   2004-??-??, current as of 2004-11-06
+   2004-??-??, current as of 2004-11-21
   
 
   
@@ -352,8 +352,8 @@ $PostgreSQL: pgsql/doc/src/sgml/release.sgml,v 1.310 2004/11/21 21:17:02 tgl Exp
       
        Syntax checking of array input values has been tightened up
        considerably. Junk that was previously allowed in odd places with
-       odd results now causes an ERROR. Empty-string element
-       values must now be written as "", rather than writing nothing.
+       odd results now causes an error. Empty-string element values
+       must now be written as "", rather than writing nothing.
        Also changed behavior with respect to whitespace surrounding
        array elements: trailing whitespace is now ignored, for symmetry
        with leading whitespace (which has always been ignored).
@@ -610,7 +610,8 @@ $PostgreSQL: pgsql/doc/src/sgml/release.sgml,v 1.310 2004/11/21 21:17:02 tgl Exp
       (Manfred Koizar)
      
      
-      This gives better statistics for asymmetric data distributions.
+      This gives better statistics when the density of valid rows is very
+      different in different regions of a table.
      
     
 
@@ -765,12 +766,24 @@ $PostgreSQL: pgsql/doc/src/sgml/release.sgml,v 1.310 2004/11/21 21:17:02 tgl Exp
      
     
 
+    
+     
+      Some logging-related configuration parameters could formerly be adjusted
+      by ordinary users, but only in the more verbose direction.
+      They are now treated more strictly: only superusers can set them.
+      However, a superuser may use ALTER USER to provide per-user
+      settings of these values for non-superusers.  Also, it is now possible
+      for superusers to set values of superuser-only configuration parameters
+      via PGOPTIONS.
+     
+    
+
     
      
       Allow configuration files to be placed outside the data directory (mlw)
      
      
-      By default, configuration files sit in the top server directory.
+      By default, configuration files are kept in the cluster's top directory.
       With this addition, configuration files can be placed outside the
       data directory, easing administration.
      
@@ -1070,7 +1083,7 @@ $PostgreSQL: pgsql/doc/src/sgml/release.sgml,v 1.310 2004/11/21 21:17:02 tgl Exp
       columns (Tom)
      
      
-      This is related to the new capability of adding defaults for new
+      This falls out from the new capability of specifying defaults for new
       columns.
      
     
@@ -1141,7 +1154,7 @@ $PostgreSQL: pgsql/doc/src/sgml/release.sgml,v 1.310 2004/11/21 21:17:02 tgl Exp
 
     
      
-      HavALTER TABLE OWNER change dependent sequence
+      MakALTER TABLE OWNER change dependent sequence
       ownership too (Alvaro)
      
     
@@ -1471,7 +1484,7 @@ $PostgreSQL: pgsql/doc/src/sgml/release.sgml,v 1.310 2004/11/21 21:17:02 tgl Exp
 
     
      
-      Fix to_char(year) for BC dates (previously it
+      Fix date_part(year) for BC dates (previously it
       returned one less than the correct year) (Bruce)
      
     
@@ -1831,6 +1844,10 @@ $PostgreSQL: pgsql/doc/src/sgml/release.sgml,v 1.310 2004/11/21 21:17:02 tgl Exp
       Use dependency information to improve the reliability of
       pg_dump (Tom)
      
+     
+      This should solve the longstanding problems with related objects
+      sometimes being dumped in the wrong order.
+     
     
 
     
@@ -1937,15 +1954,15 @@ $PostgreSQL: pgsql/doc/src/sgml/release.sgml,v 1.310 2004/11/21 21:17:02 tgl Exp
 
     
      
-      Many ecpg improvements, including SET DESCRIPTOR (Michael)
+      Add PQprepare/PQsendPrepared() functions to support
+      preparing statements without necessarily specifying the data types
+      of their parameters (Abhijit Menon-Sen)
      
     
 
     
      
-      Add PQprepare/PQsendPrepared() functions to support
-      preparing statements without necessarily specifying the data types
-      of their parameters (Abhijit Menon-Sen)
+      Many ecpg improvements, including SET DESCRIPTOR (Michael)