doc: PG 10 release note updates for psql, GiST, and markup
authorBruce Momjian <bruce@momjian.us>
Thu, 4 May 2017 23:33:41 +0000 (19:33 -0400)
committerBruce Momjian <bruce@momjian.us>
Thu, 4 May 2017 23:33:41 +0000 (19:33 -0400)
Reported-by: Andrew Borodin, Fabien COELHO, Dagfinn Ilmari Mannsaker
doc/src/sgml/release-10.sgml

index 3fa207f3ca0c2167660aa83363510aee3f792f6a..5c26f2d0ea267e81c0d7179c61a49e6e03cf891c 100644 (file)
        </para>
       </listitem>
 
+      <listitem>
+       <!--
+       Author: Tom Lane <tgl@sss.pgh.pa.us>
+       2016-09-09 [b1328d78f] Invent PageIndexTupleOverwrite, and teach BRIN and GiST
+       -->
+       <para>
+        Allow faster <acronym>GiST</> inserts and updates by reusing
+        index space more efficiently (Andrey Borodin)
+       </para>
+      </listitem>
+
      </itemizedlist>
         
      <sect5>
        <para>
         The new settings are <xref
         linkend="guc-max-pred-locks-per-relation"> and
-       <varname>max_pred_locks_per_page</>.
+        <xref linkend="guc-max-pred-locks-per-page">.
        </para>
       </listitem>
 
       </para>
 
       <para>
-       This uses the syntax <link linkend="SQL-ALTERTABLE"><command>ALTER
+       This uses the syntax <link linkend="SQL-ALTERTYPE"><command>ALTER
        TYPE ... RENAME VALUE</></>.
       </para>
      </listitem>
        <!--
        Author: Tom Lane <tgl@sss.pgh.pa.us>
        2017-03-30 [e984ef586] Support \if ... \elif ... \else ... \endif in psql scrip
+       Author: Tom Lane <tgl@sss.pgh.pa.us>
+       2017-04-02 [5dbc5da11] Fix behavior of psql's \p to agree with \g, \w, etc.
+       Author: Tom Lane <tgl@sss.pgh.pa.us>
+       2017-04-02 [68dba97a4] Document psql's behavior of recalling the previously exe
        -->
        <para>
         Add conditional branch support to <application>psql</> (Corey
        </para>
       </listitem>
 
-      <listitem>
-       <!--
-       Author: Tom Lane <tgl@sss.pgh.pa.us>
-       2017-04-02 [5dbc5da11] Fix behavior of psql's \p to agree with \g, \w, etc.
-       Author: Tom Lane <tgl@sss.pgh.pa.us>
-       2017-04-02 [68dba97a4] Document psql's behavior of recalling the previously exe
-       -->
-       <para>
-        Fix <application>psql</> \p to always print what would be executed
-        by \g or \w (Daniel V&eacute;rit&eacute;)
-       </para>
-
-       <para>
-        Previously \p didn't properly print the reverted-to command after
-        a buffer contents reset.  CLARIFY?
-       </para>
-      </listitem>
-
       <listitem>
        <!--
        Author: Tom Lane <tgl@sss.pgh.pa.us>