1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-31 22:04:40 +03:00

Doc: proofreading for v12 release notes.

Mostly markup improvements, with a couple of grammar fixes.

Liudmila Mantrova

Discussion: https://postgr.es/m/CAEkD-mDxVV1Hrxzo3-hPaS5b1s-+Gin+9Cbu2eMBqRovRVjC0w@mail.gmail.com
This commit is contained in:
Tom Lane
2019-09-23 10:40:42 -04:00
parent ac8fb2c7e2
commit a25fb9ceb1

View File

@ -608,7 +608,7 @@ Author: Tom Lane <tgl@sss.pgh.pa.us>
<para> <para>
Treat object-name columns in Treat object-name columns in
the <link linkend="information-schema"><structname>information_schema</structname></link> the <link linkend="information-schema"><structname>information_schema</structname></link>
views as being of type <type>name</type> not <type>varchar</type> views as being of type <type>name</type>, not <type>varchar</type>
(Tom Lane) (Tom Lane)
</para> </para>
@ -969,7 +969,7 @@ Author: Heikki Linnakangas <heikki.linnakangas@iki.fi>
<para> <para>
Reduce the <acronym>WAL</acronym> write overhead Reduce the <acronym>WAL</acronym> write overhead
of <acronym>GiST</acronym>, <acronym>GIN</acronym> and of <acronym>GiST</acronym>, <acronym>GIN</acronym>, and
<acronym>SP-GiST</acronym> index creation (Anastasia Lubennikova, <acronym>SP-GiST</acronym> index creation (Anastasia Lubennikova,
Andrey V. Lepikhov) Andrey V. Lepikhov)
</para> </para>
@ -1288,7 +1288,7 @@ Author: Stephen Frost <sfrost@snowman.net>
--> -->
<para> <para>
Allow <link linkend="storage-toast"><literal>TOASTed</literal></link> Allow <link linkend="storage-toast">toasted</link>
values to be minimally decompressed (Paul Ramsey) values to be minimally decompressed (Paul Ramsey)
</para> </para>
@ -1305,7 +1305,7 @@ Author: Robert Haas <rhaas@postgresql.org>
--> -->
<para> <para>
Allow <link linkend="sql-altertable"><command>ALTER TABLE .. SET Allow <link linkend="sql-altertable"><command>ALTER TABLE ... SET
NOT NULL</command></link> to avoid unnecessary table scans (Sergei NOT NULL</command></link> to avoid unnecessary table scans (Sergei
Kornilov) Kornilov)
</para> </para>
@ -1323,7 +1323,7 @@ Author: Noah Misch <noah@leadboat.com>
--> -->
<para> <para>
Allow <command>ALTER TABLE .. SET DATA TYPE</command> changing between Allow <command>ALTER TABLE ... SET DATA TYPE</command> changing between
<type>timestamp</type> and <type>timestamptz</type> to avoid a <type>timestamp</type> and <type>timestamptz</type> to avoid a
table rewrite when the session time zone is <acronym>UTC</acronym> table rewrite when the session time zone is <acronym>UTC</acronym>
(Noah Misch) (Noah Misch)
@ -1438,7 +1438,7 @@ Author: Peter Eisentraut <peter@eisentraut.org>
<para> <para>
Progress is reported in the <link Progress is reported in the <link
linkend="create-index-progress-reporting"><structname>pg_stat_progress_create_index</structname></link> linkend="create-index-progress-reporting"><structname>pg_stat_progress_create_index</structname></link>
system view system view.
</para> </para>
</listitem> </listitem>
@ -2235,7 +2235,7 @@ Author: Tomas Vondra <tomas.vondra@postgresql.org>
</para> </para>
<para> <para>
This output can also be obtained in <xref linkend="auto-explain"/> This output can also be obtained when using <xref linkend="auto-explain"/>
by setting <varname>auto_explain.log_settings</varname>. by setting <varname>auto_explain.log_settings</varname>.
</para> </para>
</listitem> </listitem>
@ -2620,7 +2620,8 @@ Author: Michael Paquier <michael@paquier.xyz>
<para> <para>
Add connection parameter <xref linkend="libpq-tcp-user-timeout"/> Add connection parameter <xref linkend="libpq-tcp-user-timeout"/>
to control libpq's <acronym>TCP</acronym> timeout (Ryohei Nagaura) to control <application>libpq</application>'s <acronym>TCP</acronym>
timeout (Ryohei Nagaura)
</para> </para>
</listitem> </listitem>
@ -2631,9 +2632,9 @@ Author: Tom Lane <tgl@sss.pgh.pa.us>
--> -->
<para> <para>
Allow libpq (and thus psql) to report only Allow <application>libpq</application> (and thus
the <literal>SQLSTATE</literal> value in error messages (Didier <application>psql</application>) to report only the
Gautheron) <literal>SQLSTATE</literal> value in error messages (Didier Gautheron)
</para> </para>
</listitem> </listitem>
@ -2644,7 +2645,7 @@ Author: Tom Lane <tgl@sss.pgh.pa.us>
--> -->
<para> <para>
Add libpq Add <application>libpq</application>
function <link linkend="libpq-pqresultmemorysize"><function>PQresultMemorySize()</function></link> function <link linkend="libpq-pqresultmemorysize"><function>PQresultMemorySize()</function></link>
to report the memory used by a query result (Lars Kanis, Tom Lane) to report the memory used by a query result (Lars Kanis, Tom Lane)
</para> </para>
@ -2657,7 +2658,7 @@ Author: Peter Eisentraut <peter_e@gmx.net>
--> -->
<para> <para>
Remove the no-display/debug flag from libpq's Remove the no-display/debug flag from <application>libpq</application>'s
<literal>options</literal> connection parameter (Peter Eisentraut) <literal>options</literal> connection parameter (Peter Eisentraut)
</para> </para>
@ -2729,8 +2730,8 @@ Author: Michael Paquier <michael@paquier.xyz>
--> -->
<para> <para>
Allow vacuumdb to disable waiting for locks or skipping all-visible Allow <application>vacuumdb</application> to disable waiting for locks
pages (Nathan Bossart) or skipping all-visible pages (Nathan Bossart)
</para> </para>
<para> <para>
@ -2835,9 +2836,13 @@ Author: Tom Lane <tgl@sss.pgh.pa.us>
--> -->
<para> <para>
Improve tab completion of <command>CREATE TABLE, CREATE TRIGGER, Improve tab completion of <command>CREATE TABLE</command>,
CREATE EVENT TRIGGER, ANALYZE, EXPLAIN, VACUUM, ALTER TABLE, <command>CREATE TRIGGER</command>,
ALTER INDEX, ALTER DATABASE, ALTER INDEX ALTER COLUMN</command> <command>CREATE EVENT TRIGGER</command>,
<command>ANALYZE</command>, <command>EXPLAIN</command>,
<command>VACUUM</command>, <command>ALTER TABLE</command>,
<command>ALTER INDEX</command>, <command>ALTER DATABASE</command>,
and <command>ALTER INDEX ALTER COLUMN</command>
(Dagfinn Ilmari Mannsåker, Tatsuro Yamada, Michaël Paquier, (Dagfinn Ilmari Mannsåker, Tatsuro Yamada, Michaël Paquier,
Tom Lane, Justin Pryzby) Tom Lane, Justin Pryzby)
</para> </para>
@ -2878,8 +2883,8 @@ Author: Tom Lane <tgl@sss.pgh.pa.us>
--> -->
<para> <para>
Improve precision of pgbench's <option>--rate</option> Improve precision of <application>pgbench</application>'s
option (Tom Lane) <option>--rate</option> option (Tom Lane)
</para> </para>
</listitem> </listitem>
@ -2889,8 +2894,8 @@ Author: Peter Eisentraut <peter_e@gmx.net>
2018-10-15 [5b75a4f82] pgbench: Report errors during run better 2018-10-15 [5b75a4f82] pgbench: Report errors during run better
--> -->
<para> <para>
Improve pgbench's error reporting with clearer messages and return Improve <application>pgbench</application>'s error reporting with
codes (Peter Eisentraut) clearer messages and return codes (Peter Eisentraut)
</para> </para>
</listitem> </listitem>
@ -3160,7 +3165,7 @@ existin
<para> <para>
This enables the development of new <link linkend="tableam">table This enables the development of new <link linkend="tableam">table
access methods</link>, which can optimize storage for different access methods</link>, which can optimize storage for different
use-cases. The existing <literal>heap</literal> access method use cases. The existing <literal>heap</literal> access method
remains the default. remains the default.
</para> </para>
</listitem> </listitem>