Misc minor fixes to 9.1 release notes
authorMagnus Hagander
Sun, 20 Mar 2011 12:28:05 +0000 (13:28 +0100)
committerMagnus Hagander
Sun, 20 Mar 2011 12:28:05 +0000 (13:28 +0100)
Thom Brown

doc/src/sgml/release-9.1.sgml

index c293e80861b518909d4122806129d25d262baf5a..3f962395ed6078eabb8a1a7321ed712c0bba98b6 100644 (file)
       
        Change 
        linkend="array-functions-table">string_to_array()
-       to return an empty array for for a zero-length string (Pavel
+       to return an empty array for a zero-length string (Pavel
        Stehule)
       
 
 
      
       
-        Require superuser or CREATEROLE permissions to
+        Require superuser or CREATEROLE permissions in order to
         set role comments (Tom Lane)
       
      
 
        
         This is a read-only permission used for streaming replication
-        and allows non-super users to initiate replication connections.
-        Previously only super-users could initiate replication
-        connections;  super-users have this permission by default.
+        and allows non-superusers to initiate replication connections.
+        Previously only superusers could initiate replication
+        connections;  superusers have this permission by default.
        
       
 
         
 
         
-         This reports that status of all connected standby servers.
+         This reports the status of all connected standby servers.
         
        
 
 
         
          This returns the time on the primary that generated the most
-         recently commit or abort record applied on the standby.
+         recent commit or abort record applied on the standby.
         
        
 
        
         
          Add recovery.conf setting 
-         linkend="pause-at-recovery-target">pause_at_recovery_target
-         to pause recovery at target (Simon Riggs)
+         linkend="pause-at-recovery-target">pause_at_recovery_target
+         to pause recovery at target (Simon Riggs)
         
 
         
 
       
        
-        Support they keyword 'all' in the host column of 
+        Support the keyword 'all' in the host column of 
         linkend="auth-pg-hba-conf">pg_hba.conf
         (Peter Eisentraut)
        
        
 
        
-        This are like the database-wide statistics counter views but
+        These are like the database-wide statistics counter views but
         reflect counts for only the current transaction.
        
       
        
 
        
-        Specifically, let SELECT query results be feed
+        Specifically, let SELECT query results be fed
         into INSERT, UPDATE, DELETE
         statements.
        
      
       
          Allow new values to be added to an existing enum type via
-         ALTER TYPE(Andrew
+         ALTER TYPE (Andrew
          Dunstan)
       
      
        
         Allow public as a pseudo-role name in 
         linkend="functions-info-access-table">has_table_privilege()
-        and and related functions (Alvaro Herrera)
+        and related functions (Alvaro Herrera)
        
 
        
       
        
         Add FOREACH IN
-        ARRAY to plpgsql to allow array interation (Pavel
+        ARRAY to plpgsql to allow array iteration (Pavel
         Stehule)
        
 
       
 
       
-       Previously a empty-array query that used an index might return
+       Previously an empty-array query that used an index might return
        different results from one that used a sequential scan.