9.0 release note improvements
authorBruce Momjian
Mon, 12 Jul 2010 18:25:21 +0000 (18:25 +0000)
committerBruce Momjian
Mon, 12 Jul 2010 18:25:21 +0000 (18:25 +0000)
Erik Rijkers

doc/src/sgml/release-9.0.sgml

index ccc2cabf36c1dec77c8ac4f3969c5028d56bb048..b8d0992e65bceab6b3f6c1076f08a1d4f0c67b58 100644 (file)
@@ -1,4 +1,4 @@
-
+
 
  
   Release 9.0
     PostgreSQL adds features that have been requested
     for years, like easy-to-use replication, a mass permission
     facility, and anonymous blocks. While past major releases have
-    been quite conservative in their scope, this release shows a
-    bold new desire to provide facilities that every new and existing
-    user of PostgreSQL will embrace. This has all
-    been done with few incompatibilities. The major areas of
-    enhancement are:
+    been conservative in their scope, this release shows a
+    bold new desire to provide facilities that new and existing
+    users of PostgreSQL will embrace. This has all
+    been done with few incompatibilities. Major enhancements are:
    
 
    
      
       Broadly enhanced stored procedure support.
       The DO statement permits
-      ad-hoc or anonymous code blocks.  Functions can now be called using named
-      parameters.  PL/pgSQL is now installed by default, and PL/Perl and
-      PL/Python have been enhanced in several ways, including support for
-      Python3.
+      anonymous code blocks.  Functions can now be called using named
+      parameters.  PL/Perl and PL/Python have been enhanced in several ways,
+      including support for Python3.
      
     
 
      
       Adjust 
       linkend="guc-log-temp-files">log_temp_files to
-      use default file sizes units of kilobytes (Robert Haas)
+      use default file size units of kilobytes (Robert Haas)
      
     
 
       
        This feature is called Streaming Replication.
        Previously WAL files could be sent to standby systems only
-       as 16 megabytes files; this allows master changes to be sent to the
+       as 16 megabytes files; Streaming Replication allows master changes to be sent to the
        standby with very little delay. There are new postgresql.conf
        and recovery.conf settings to enable this
        feature, as well as extensive 
        Outer joins where the inner side is unique and not referenced in
        the query are unnecessary and are therefore now removed.  This will
        accelerate many automatically generated queries, such as those created
-       by object-relational mappers.
+       by object-relational mappers (ORM).
       
      
 
       
 
       
-       This lets DBAs and security staff to audit when database settings
+       This lets DBAs and security staff audit when database settings
        were changed.
       
 
       
        Add ALTER
        DEFAULT PRIVILEGES command to control privileges
-       of all newly-created objects (Petr Jelinek)
+       of newly-created objects (Petr Jelinek)
       
 
       
        This greatly simplifies the assignment of object privileges in
-       a complex database application.  Defaults currently support tables
+       a complex database application.  Defaults currently support tables,
        views, sequences, and functions. Defaults may be assigned on a
        per-schema basis or database-wide.
       
 
       
        This allows UPDATE tab SET col = col + 1 to work on
-       columns that have a unique indexes or are marked as primary keys,
+       columns that have a unique indexes or are marked as primary key,
        but DEFERRABLE INITIALLY DEFERRED must be used to mark
        the constraint as deferred.
       
 
      
       
-       Generalize uniqueness constraints by allowing arbitrary operator
+       Exclusion Constraints: generalize uniqueness constraints by allowing arbitrary operator
        comparisons, not just equality (Jeff Davis)
       
 
      
       
        Implement anonymous functions using the 
-       linkend="SQL-DO">DO statement (Petr
-       Jelinek, Joshua Tolley, Hannu Valtonen)
+       linkend="SQL-DO">DO statement, a.k.a anonymous
+       blocks (Petr Jelinek, Joshua Tolley, Hannu Valtonen)
       
 
       
       
 
       
-       This can be enabled with the server variable 
+       This can be globally enabled with the server variable 
        linkend="guc-plperl-use-strict">plperl.use_strict.
       
      
      
       
        Add the string data type in ecpg
-       Informix-compatibility mode (Zoltan Boszormenyi)
+       Informix-compatibility mode (Boszormenyi Zoltan)
       
      
 
       
        
         Allow ecpg to use noise words FROM and
-        IN in FETCH and MOVE (Zoltan
-        Boszormenyi)
+        IN in FETCH and MOVE (Boszormenyi
+        Zoltan)