Some copy editing of the release notes
authorPeter Eisentraut
Wed, 1 Jun 2011 19:22:18 +0000 (22:22 +0300)
committerPeter Eisentraut
Wed, 1 Jun 2011 19:22:18 +0000 (22:22 +0300)
doc/src/sgml/release-9.1.sgml

index 299cf9d721ac561586c66f47411d13e9aec94b7f..69f34d36cda94e2f73a432c8eb9958236d7c763e 100644 (file)
       
 
       
-       Previously this returned NULL.
+       Previously this returned a null value.
       
      
 
       
 
       
-       Previously this returned NULL.
+       Previously this returned a null value.
       
      
 
       
 
       
-       Triggers can now be fired in three cases: BEFORE, AFTER, or INSTEAD OF
-       some action.  Trigger function authors should verify that their logic
-       behaves sanely in all three cases.
+       Triggers can now be fired in three cases: BEFORE,
+       AFTER, or INSTEAD OF some action.
+       Trigger function authors should verify that their logic behaves
+       sanely in all three cases.
       
      
 
 
       
        
-        Allow unlogged tables using 
+        Allow unlogged tables using the 
         linkend="SQL-CREATETABLE-description">UNLOGGED
-        during CREATE
+        clause in CREATE
         TABLE (Robert Haas)
        
 
        
 
        
-        This allows the use of commit_siblings with less overhead.
+        This allows the use of commit_siblings with
+        less overhead.
        
       
 
 
       
        
-        Support host names and host suffixes (e.g. .example.com) in
-        pg_hba.conf
+        Support host names and host suffixes
+        (e.g. .example.com) in 
+        linkend="auth-pg-hba-conf">pg_hba.conf
         (Peter Eisentraut)
        
 
 
       
        
-        Support the keyword all in the host column of 
+        Support the key word all in the host column of 
         linkend="auth-pg-hba-conf">pg_hba.conf
         (Peter Eisentraut)
        
          Add 
          linkend="guc-log-file-mode">log_file_mode
          which controls the permissions on log files created by the
-         logging_collector (Martin Pihlak)
+         logging collector (Martin Pihlak)
        
       
 
 
       
        
-        Add client_hostname field to 
+        Add client_hostname column to 
         linkend="monitoring-stats-views-table">pg_stat_activity
         (Peter Eisentraut)
        
 
       
        
-        Add buffers_backend_fsync field to 
+        Add buffers_backend_fsync column to 
         linkend="monitoring-stats-views-table">pg_stat_bgwriter
         (Greg Smith)
        
 
        
-        This new field counts the number of times a backend fsyncs a
+        This new column counts the number of times a backend fsyncs a
         buffer.
        
       
        
 
        
-        wal_buffers is now auto-tuned by default based on the size of
-        shared_buffers.
+        wal_buffers is now auto-tuned by default based on
+        the size of shared_buffers.
        
       
 
 
      
       
-       Add variable 
+       Add configuration parameter 
        linkend="guc-hot-standby-feedback">hot_standby_feedback
        to enable standbys to postpone cleanup of old row versions on the
        primary (Simon Riggs)
        
 
        
-        This allows a recovery server to be queried to check if the
-        recovery point is the one desired.
+        This allows a recovery server to be queried to check whether
+        the recovery point is the one desired.
        
       
 
       
        
         Add a true 
-        linkend="xact-serializable">serializable isolation
+        linkend="xact-serializable">serializable isolation
         level (Kevin Grittner, Dan Ports)
        
 
 
       
        
-        Allow use of the keyword DISTINCT in 
+        Allow use of the key word DISTINCT in 
         linkend="queries-union">UNION/INTERSECT/EXCEPT
         clauses (Tom Lane)
        
 
        
         DISTINCT is the default behavior so use of this
-        keyword is redundant, but the SQL standard allows it.
+        key word is redundant, but the SQL standard allows it.
        
       
 
        
         The new option is called NOT VALID, which can
         later be modified to VALIDATED and validation
-        checks performed. Together these allow you to add a Foreign Key
+        checks performed. Together these allow you to add a foreign key
         with minimal impact on read and write operations.
        
       
        
 
        
-        For example, converting a varchar column to text no longer
-        requires a rewrite of the table.  However, increasing the length
-        constraint on a varchar column still requires a table rewrite.
+        For example, converting a varchar column to
+        text no longer requires a rewrite of the table.
+        However, increasing the length constraint on a
+        varchar column still requires a table rewrite.
        
       
 
 
       
        
-        Fix possible "tuple concurrently updated" error when two server
-        backends attempted to add an inheritance parent to the same
-        table at the same time (Robert Haas)
+        Fix possible tuple concurrently updated error
+        when two server backends attempted to add an inheritance
+        parent to the same table at the same time (Robert Haas)
        
 
        
          linkend="array-functions-table">array_to_string()
          and 
          linkend="array-functions-table">string_to_array()
-         for NULL processing control (Pavel Stehule)
+         for null value processing control (Pavel Stehule)
        
       
 
 
       
        
-        Add fields to the 
+        Add columns to the 
         linkend="infoschema-sequences">information_schema.sequences
         system view (Peter Eisentraut)
        
 
        
-        Previously, though the view existed, all of these view fields
-        were unimplemented.
+        Previously, though the view existed, the columns about the
+        sequence parameters were unimplemented.
        
       
 
 
       
        
-        plpy.Fatal now raises FATAL, rather
-        than ERROR (Jan Urbanski)
-       
-
-       
-        The old behavior was incorrect.
-       
-      
-
-      
-       
-        Overhaul of PL/Python (Jan Urbanski)
+        Fix exception handling with Python 3 (Jan Urbanski)
        
 
        
-        This includes exception support for Python 3.  **More detail?
+        Exception classes were previously not available in
+        plpy under Python 3.
        
       
 
       
        
         Make psql distinguish between unique
-        indices and unique constraints (Josh Kupershmidt)
+        indexes and unique constraints (Josh Kupershmidt)
        
       
 
 
       
        
-        Improve pg_ctl
-        start's "wait" (
-        port numbers, non-standard Unix-domain socket locations,
-        permission problems, and stale postmaster lock files (Bruce
-        Momjian)
+        Improve pg_ctl start's wait
+        (
+        non-standard Unix-domain socket locations, permission
+        problems, and stale postmaster lock files (Bruce Momjian)
        
       
 
        
 
        
-        This allows for faster compiles.  Also, make -k
-        and make .
+        This allows for faster compiles.  Also, make -k
+        now works properly.
        
       
 
       
        
          Improve ability to use C++ compilers for 
-         linkend="xfunc-c">backend compiles by removing
-         conflicting keywords (Tom Lane)
+         linkend="xfunc-c">compiling add-on modules by removing
+         conflicting key words (Tom Lane)
        
       
 
      
       
        Allow contrib/intarray
-       to work properly on multi-dimensional arrays (Tom Lane)
+       to work properly on multidimensional arrays (Tom Lane)
       
      
 
 
      
       
-       Document that it is possible to access all composite fields
-       using (compositeval).*
-       syntax (Peter Eisentraut)
+       Document that it is possible to access all composite type
+       fields using 
+       linkend="field-selection">(compositeval).*
+       syntax (Peter Eisentraut)