On Fri, May 16, 2014 at 02:10:40AM +0200, Andres Freund wrote:
> On 2014-05-04 08:46:07 -0400, Bruce Momjian wrote:
> > I have completed the initial version of the 9.4 release notes.  You can
> > view them here:
> > 
> >     http://www.postgresql.org/docs/devel/static/release-9-4.html
> > 
> > I will be adding additional markup in the next few days.
> > 
> > Feedback expected and welcomed.  I expect to be modifying this until we
> > release 9.4 final.  I have marked items where I need help with question
> > marks.
> 
> This time I started reading from the end. I think I've fixed most of the
> questionable things (i.e. ? or FIXMEs) left.

I adjusted your patch and applied it.  Thanks.

-- 
  Bruce Momjian  <br...@momjian.us>        http://momjian.us
  EnterpriseDB                             http://enterprisedb.com

  + Everyone has their own god. +
diff --git a/doc/src/sgml/release-9.4.sgml b/doc/src/sgml/release-9.4.sgml
new file mode 100644
index 3070d0b..91a586f
*** a/doc/src/sgml/release-9.4.sgml
--- b/doc/src/sgml/release-9.4.sgml
***************
*** 30,36 ****
       <listitem>
        <para>
         <link linkend="logicaldecoding">Logical decoding</link> allows database
!        changes to be streamed out in customizable format
        </para>
       </listitem>
  
--- 30,36 ----
       <listitem>
        <para>
         <link linkend="logicaldecoding">Logical decoding</link> allows database
!        changes to be streamed out in a customizable format
        </para>
       </listitem>
  
***************
*** 298,303 ****
--- 298,309 ----
       </para>
      </listitem>
  
+     <listitem>
+      <para>
+       <command>DISCARD ALL</> now also discards the state of sequences.
+      </para>
+     </listitem>
+ 
     </itemizedlist>
  
    </sect2>
***************
*** 1005,1011 ****
         </para>
  
         <para>
-         <!-- FIXME: drop? -->
          This was added so views that select from a table with zero columns
          can be dumped correctly.
         </para>
--- 1011,1016 ----
***************
*** 1028,1034 ****
         </para>
  
         <para>
-         <!-- FIXME: compatibility break entry? -->
          <command>DISCARD ALL</> will now also discard such information.
         </para>
        </listitem>
--- 1033,1038 ----
***************
*** 1199,1204 ****
--- 1203,1213 ----
          AGGREGATE</></link> to supply the size of the aggregate's
          transition state data (Hadi Moshayedi)
         </para>
+ 
+        <para>
+         This allows the optimizer to better estimate how much memory will be
+         used by aggregates.
+        </para>
        </listitem>
  
       </itemizedlist>
***************
*** 1218,1224 ****
  
        <listitem>
         <para>
!         Allow the changing of foreign key constraint  via <link
          linkend="SQL-ALTERTABLE"><command>ALTER TABLE</></link>
          ... <literal>ALTER CONSTRAINT</> (Simon Riggs)
         </para>
--- 1227,1233 ----
  
        <listitem>
         <para>
!         Allow changing foreign key constraint deferrability via <link
          linkend="SQL-ALTERTABLE"><command>ALTER TABLE</></link>
          ... <literal>ALTER CONSTRAINT</> (Simon Riggs)
         </para>
***************
*** 1254,1260 ****
  
        <listitem>
         <para>
!         Fully-implement the <link
          linkend="datatype-line"><type>line</></link> data type (Peter
          Eisentraut)
         </para>
--- 1263,1269 ----
  
        <listitem>
         <para>
!         Fully implement the <link
          linkend="datatype-line"><type>line</></link> data type (Peter
          Eisentraut)
         </para>
***************
*** 1472,1478 ****
         <para>
          Add function <link
          linkend="functions-admin-dblocation"><function>pg_filenode_relation()</></link>
!         to allow for more efficient filenode to relation lookups (Andres
          Freund)
         </para>
        </listitem>
--- 1481,1487 ----
         <para>
          Add function <link
          linkend="functions-admin-dblocation"><function>pg_filenode_relation()</></link>
!         to allow for more efficient lookup of relation names from filenodes (Andres
          Freund)
         </para>
        </listitem>
***************
*** 1543,1552 ****
        </listitem>
  
        <listitem>
-        <!-- FIXME -->
         <para>
          Allow polymorphic aggregates to have non-polymorphic state data
!         types ? (Tom Lane)
         </para>
        </listitem>
  
--- 1552,1564 ----
        </listitem>
  
        <listitem>
         <para>
          Allow polymorphic aggregates to have non-polymorphic state data
!         types (Tom Lane)
!        </para>
!        <para>
!         This allows the declaration of aggregates like the built-in
!         aggregate <function>array_agg()</> in SQL.
         </para>
        </listitem>
  
***************
*** 1772,1778 ****
  
        <listitem>
         <para>
!         Allow field wrapping to <application>psql</>'s "extended" mode
          (Sergey Muraviov)
         </para>
        </listitem>
--- 1784,1791 ----
  
        <listitem>
         <para>
!         Add ability to wrap long lines in <application>psql</>'s
!         <literal>expanded</> mode by using <command>\pset format wrapped</>
          (Sergey Muraviov)
         </para>
        </listitem>
***************
*** 2218,2224 ****
        <listitem>
         <para>
          Add <link linkend="pgprewarm"><application>pg_prewarm</></link>
!         to preload relation data into the shared buffer cache (Robert Haas)
         </para>
  
         <para>
--- 2231,2238 ----
        <listitem>
         <para>
          Add <link linkend="pgprewarm"><application>pg_prewarm</></link>
!         extension to preload relation data into the shared buffer cache
!         (Robert Haas)
         </para>
  
         <para>
***************
*** 2243,2249 ****
  
        <listitem>
         <para>
!         Add logging of trigger execution to <link
          linkend="auto-explain"><application>auto_explain</></link>
          (Horiguchi Kyotaro)
         </para>
--- 2257,2263 ----
  
        <listitem>
         <para>
!         Add option to include trigger execution time to <link
          linkend="auto-explain"><application>auto_explain</></link>
          (Horiguchi Kyotaro)
         </para>
***************
*** 2279,2287 ****
  
        <listitem>
         <para>
!         Improve indexing of <link
!         linkend="pgtrgm"><application>pg_trgm</></link> values to
!         discourage indexing whitespace (Alexander Korotkov)
         </para>
        </listitem>
  
--- 2293,2302 ----
  
        <listitem>
         <para>
!         Improve <link linkend="pgtrgm"><application>pg_trgm</>'s</link>
!         generation of trigrams for indexed regular expression searches by
!         discouraging the indexing of trigrams containing whitespace (Alexander
!         Korotkov)
         </para>
        </listitem>
  
***************
*** 2328,2334 ****
  
        <listitem>
         <para>
!         Allow pgbench to process script files of any line length (Sawada
          Masahiko)
         </para>
  
--- 2343,2349 ----
  
        <listitem>
         <para>
!         Allow <application>pgbench</> to process script files of any line length (Sawada
          Masahiko)
         </para>
  
***************
*** 2339,2358 ****
  
        <listitem>
         <para>
!         Add <application>pg_bench</> option (<option>--rate</>) to control
          the transaction rate (Fabien Coelho)
         </para>
        </listitem>
  
        <listitem>
         <para>
!         Add <option>--progress</> output option to pgbench (Fabien Coelho)
         </para>
        </listitem>
  
        <listitem>
         <para>
!         Add long options to pgbench (Fabien Coelho)
         </para>
        </listitem>
  
--- 2354,2373 ----
  
        <listitem>
         <para>
!         Add <application>pgbench</> option (<option>--rate</>) to control
          the transaction rate (Fabien Coelho)
         </para>
        </listitem>
  
        <listitem>
         <para>
!         Add <option>--progress</> output option to <application>pgbench</> (Fabien Coelho)
         </para>
        </listitem>
  
        <listitem>
         <para>
!         Add long options to <application>pgbench</> (Fabien Coelho)
         </para>
        </listitem>
  
-- 
Sent via pgsql-hackers mailing list (pgsql-hackers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-hackers

Reply via email to