Re: Added tab completion for the missing options in copy statement

Поиск
Список
Период
Сортировка
От vignesh C
Тема Re: Added tab completion for the missing options in copy statement
Дата
Msg-id CALDaNm12TD-wdCFvAAw3LJOVt4tSxtj=Cv9-8p61X2h3nw2=Mg@mail.gmail.com
обсуждение исходный текст
Ответ на Added tab completion for the missing options in copy statement  (vignesh C <vignesh21@gmail.com>)
Ответы Re: Added tab completion for the missing options in copy statement  (Michael Paquier <michael@paquier.xyz>)
Список pgsql-hackers
On Sat, Jun 27, 2020 at 6:52 AM vignesh C <vignesh21@gmail.com> wrote:
>
> Hi,
>
> I found that tab completion for some parts of the copy statement was
> missing. The Tab completion was missing for the following cases:
> 1) COPY [BINARY] <sth> FROM filename -> "BINARY", "DELIMITER", "NULL",
> "CSV", "ENCODING", "WITH (", "WHERE" should be shown.
> 2) COPY [BINARY] <sth> TO filename -> "BINARY", "DELIMITER", "NULL",
> "CSV", "ENCODING", "WITH (" should be shown.
> 3) COPY [BINARY] <sth> FROM filename WITH options -> "WHERE" should be shown.
>
> I could not find any test cases for tab completion, hence no tests
> were added. Attached a patch which has the fix for the same.
> Thoughts?
>

>The following review has been posted through the commitfest application:
>make installcheck-world: tested, passed
>Implements feature: tested, passed
>Spec compliant: tested, passed
>Documentation: not tested
>Tested the tab complete for copy command, it provides the tab completion after providing the "TO|FROM filename
With|Where".Does this require any doc change?
 

Thanks for reviewing the patch.
This changes is already present in the document, no need to make any
changes as shown below:

COPY table_name [ ( column_name [, ...] ) ]
    FROM { 'filename' | PROGRAM 'command' | STDIN }
    [ [ WITH ] ( option [, ...] ) ]
    [ WHERE condition ]

Please have a look and let me know if you feel anything needs to be
added on top of it.

Regards,
Vignesh
EnterpriseDB: http://www.enterprisedb.com



В списке pgsql-hackers по дате отправления:

Предыдущее
От: Zhenghua Lyu
Дата:
Сообщение: distribute_restrictinfo_to_rels if restrictinfo contains volatile functions
Следующее
От: "Andrey V. Lepikhov"
Дата:
Сообщение: Re: POC: postgres_fdw insert batching