Re: [PATCH] Improve documentation of REINDEX options

From: Josef Šimánek <josef(dot)simanek(at)gmail(dot)com>
To: Michael Paquier <michael(at)paquier(dot)xyz>
Cc: pgsql-hackers(at)postgresql(dot)org
Subject: Re: [PATCH] Improve documentation of REINDEX options
Date: 2019-12-17 09:23:51
Message-ID: CAFp7QwqhYnp=V-o_eyDSxguE9B31HNGX5JWvfu2OJUzKzjUmfg@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

út 17. 12. 2019 v 6:36 odesílatel Michael Paquier <michael(at)paquier(dot)xyz>
napsal:

> On Fri, Dec 13, 2019 at 10:28:33AM +0100, Josef Šimánek wrote:
> > I have prepared patch to improve documentation for REINDEX. It
> > should be more inline with another documentation pages.
> >
> > You can see the change applied in attached file. Patch can be found at
> > https://github.com/simi/postgres/pull/3 (diff -
> > https://github.com/simi/postgres/pull/3.diff, patch -
> > https://github.com/simi/postgres/pull/3.patch).
>
> Please, always attach your patches to emails sent on this mailing
> list. If for a reason or another, the data located to with external
> link is lost (imagine for example that your github account is gone or
> that github is reduced to ashes), then such patches would be lost, and
> anybody looking at this email 10 years from now would not know what
> you have been writing about here. I am attaching it here for the
> archive's sake.
>
> +<phrase>where <replaceable class="parameter">option</replaceable> can
> be:</phrase>
> +
> + VERBOSE
> Why not... We did that in the docs of ANALYZE for v11 when
> introducing the parenthesized grammar flavor for the options
> available.
>
> - Rebuild all the indexes on the table <literal>my_table</literal>:
> + Rebuild all the indexes on the table <literal>my_table</literal>
> with progress report per index:
>
> <programlisting>
> -REINDEX TABLE my_table;
> +REINDEX (VERBOSE) TABLE my_table;
> Not sure if this part brings much to the reader though. It is not
> like the command description of REINDEX is complicated with dozens
> of option choices.
>

For me this is the default way how to reindex whole table manually in psql
since you get some "progress". Anyway I can remove it if you don't see any
benefit in extending this example.

> --
> Michael
>

In response to

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message Kyotaro Horiguchi 2019-12-17 10:25:12 Re: archive status ".ready" files may be created too early
Previous Message Josef Šimánek 2019-12-17 09:09:58 Re: [PATCH] Improve documentation of REINDEX options