Thread
Commits
-
Improve tab completion for ALTER STATISTICS <name> SET in psql
- 3cf2f7af7f9b 16.0 landed
-
Improve tab completion for ALTER STATISTICS
vignesh C <vignesh21@gmail.com> — 2022-10-19T10:36:51Z
HI, I noticed that the tab completion for ALTER STATISTICS .. SET was not handled. The attached patch displays SCHEMA and STATISTICS for tab completion of ALTER STATISTICS name SET. Regards, Vignesh
-
Re: Improve tab completion for ALTER STATISTICS
Michael Paquier <michael@paquier.xyz> — 2022-10-24T07:00:10Z
On Wed, Oct 19, 2022 at 04:06:51PM +0530, vignesh C wrote: > I noticed that the tab completion for ALTER STATISTICS .. SET was not > handled. The attached patch displays SCHEMA and STATISTICS for tab > completion of ALTER STATISTICS name SET. Indeed, it is a bit strange as we would get a list of settable parameters once the completion up to SET is done, rather than STATISTICS and SCHEMA. Your patch looks fine, so applied. Thanks! -- Michael
-
Re: Improve tab completion for ALTER STATISTICS
vignesh C <vignesh21@gmail.com> — 2022-10-25T03:18:11Z
On Mon, 24 Oct 2022 at 12:30, Michael Paquier <michael@paquier.xyz> wrote: > > On Wed, Oct 19, 2022 at 04:06:51PM +0530, vignesh C wrote: > > I noticed that the tab completion for ALTER STATISTICS .. SET was not > > handled. The attached patch displays SCHEMA and STATISTICS for tab > > completion of ALTER STATISTICS name SET. > > Indeed, it is a bit strange as we would get a list of settable > parameters once the completion up to SET is done, rather than > STATISTICS and SCHEMA. Your patch looks fine, so applied. Thanks! Thanks for pushing this. Regards, Vignesh