On Wed, Jan 22, 2020 at 2:52 PM Amit Langote <[email protected]> wrote:
>
> On Fri, Jan 17, 2020 at 12:19 AM Justin Pryzby <[email protected]> wrote:
> >
> > On Wed, Jan 15, 2020 at 02:11:10PM -0300, Alvaro Herrera wrote:
> > > I just pushed this after some small extra tweaks.
> > >
> > > Thanks, Yamada-san, for seeing this to completion!
> >
> > Find attached minor fixes to docs - sorry I didn't look earlier.
> >
> > Possibly you'd also want to change the other existing instances of
> > "preparing
> > to begin".
>
> Spotted a few other issues with the docs:
>
> + Number of computed extended statistics computed.
>
> Should be: "Number of extended statistics computed."
>
> + <entry>OID of the child table currently being scanned. This
> field is only valid when
> + the phase is <literal>computing extended statistics</literal>.
>
> Should be: "This field is only valid when the phase is
> <literal>acquiring inherited sample rows</literal>."
>
> + durring the table scan.
>
> during
>
> Attached a patch.
Oops, really attached this time.
Thanks,
Amit
diff --git a/doc/src/sgml/monitoring.sgml b/doc/src/sgml/monitoring.sgml
index 0bfd6151c4..67fbd9660b 100644
--- a/doc/src/sgml/monitoring.sgml
+++ b/doc/src/sgml/monitoring.sgml
@@ -3592,7 +3592,7 @@ SELECT pg_stat_get_backend_pid(s.backendid) AS pid,
<entry><structfield>ext_stats_computed</structfield></entry>
<entry><type>bigint</type></entry>
<entry>
- Number of computed extended statistics computed. This counter only
advances when
+ Number of extended statistics computed. This counter only advances when
the phase is <literal>computing extended statistics</literal>.
</entry>
</row>
@@ -3615,7 +3615,7 @@ SELECT pg_stat_get_backend_pid(s.backendid) AS pid,
<entry><structfield>current_child_table_relid</structfield></entry>
<entry><type>oid</type></entry>
<entry>OID of the child table currently being scanned. This field is only
valid when
- the phase is <literal>computing extended statistics</literal>.
+ the phase is <literal>acquiring inherited sample rows</literal>.
</entry>
</row>
</tbody>
@@ -3667,7 +3667,7 @@ SELECT pg_stat_get_backend_pid(s.backendid) AS pid,
<entry><literal>computing extended statistics</literal></entry>
<entry>
The command is computing extended statistics from the samples rows
obtained
- durring the table scan.
+ during the table scan.
</entry>
</row>
<row>