Re: fix stale help message

From: Junwang Zhao <zhjwpku(at)gmail(dot)com>
To: PostgreSQL Hackers <pgsql-hackers(at)lists(dot)postgresql(dot)org>, peter(at)eisentraut(dot)org
Subject: Re: fix stale help message
Date: 2022-08-13 01:03:29
Message-ID: CAEG8a3JPHcYr9pyxUjeMDXFTk=Bq=PZqmUNb4uBUKZ68xgMqQQ@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

Hi peter,

Sorry to bother, but I notice that you are one of the most active
committers, can you pls take a look at this thread.

Thanks!

On Wed, Aug 10, 2022 at 11:32 PM Junwang Zhao <zhjwpku(at)gmail(dot)com> wrote:
>
> when parsing command-line options, the -f option support disabling
> 8 scan and join methods, o, b and t disable index-only scans,
> bitmap index scans, and TID scans respectively, add them to the
> help message.
>
> diff --git a/src/backend/main/main.c b/src/backend/main/main.c
> index 5a964a0db6..f5da4260a1 100644
> --- a/src/backend/main/main.c
> +++ b/src/backend/main/main.c
> @@ -351,7 +351,7 @@ help(const char *progname)
> printf(_(" -?, --help show this help, then exit\n"));
>
> printf(_("\nDeveloper options:\n"));
> - printf(_(" -f s|i|n|m|h forbid use of some plan
> types\n"));
> + printf(_(" -f s|i|o|b|t|n|m|h forbid use of some plan
> types\n"));
> printf(_(" -n do not reinitialize shared
> memory after abnormal exit\n"));
> printf(_(" -O allow system table structure
> changes\n"));
> printf(_(" -P disable system indexes\n"));
>
> --
> Regards
> Junwang Zhao

--
Regards
Junwang Zhao

In response to

Browse pgsql-hackers by date

  From Date Subject
Next Message Amit Kapila 2022-08-13 05:10:50 Re: [PATCH] Use indexes on the subscriber when REPLICA IDENTITY is full on the publisher
Previous Message Bruce Momjian 2022-08-12 23:04:12 Re: Add lasterrno setting for dir_existsfile()