Re: Improved tab completion for PostgreSQL parameters in enums

2021-10-13 Thread bt21masumurak
r some of their values, like default_transaction_isolation. I understand these comments, and the proposal was withdrawn. Regards, Kosei Masumura 2021-10-06 23:34 に Tom Lane さんは書きました: bt21masumurak writes: If you do tab completion in a situation like A, you will see ["on"] inste

Re: Improve the HINT message of the ALTER command for postgres_fdw

2021-10-12 Thread bt21masumurak
.sql. +1. I made new patch based on those comments. Regards, Kosei Masumura 2021-10-08 17:13 に Daniel Gustafsson さんは書きました: On 8 Oct 2021, at 09:38, Bharath Rupireddy wrote: On Fri, Oct 8, 2021 at 12:48 PM bt21masumurak wrote: Hi When 'ALTER FOREIGN DATA WRAPPER OPTIONS' is exec

Improve the HINT message of the ALTER command for postgres_fdw

2021-10-08 Thread bt21masumurak
Hi When 'ALTER FOREIGN DATA WRAPPER OPTIONS' is executed against postgres_fdw, the HINT message is printed as shown below, even though there are no valid options in this context. =# ALTER FOREIGN DATA WRAPPER postgres_fdw OPTIONS (format 'csv'); ERROR: invalid option "format" HINT: Valid opti

Improved tab completion for PostgreSQL parameters in enums

2021-10-05 Thread bt21masumurak
Hi If you do tab completion in a situation like A, you will see ["on"] instead of [on]. A : "ALTER SYSTEM SET wal_compression TO " I made a patch for this problem. regards, Kosei Masumuradiff --git a/src/bin/psql/tab-complete.c b/src/bin/psql/tab-complete.c index 4155d81252..86087e790b 10064