Re: [HACKERS] Re: [PATCH] Tab completion for ALTER TYPE … RENAME VALUE …

Поиск
Список
Период
Сортировка
От Artur Zakirov
Тема Re: [HACKERS] Re: [PATCH] Tab completion for ALTER TYPE … RENAME VALUE …
Дата
Msg-id CAKNkYnw8wVX5htytcQ8LGOuYY4kBbq7F4L5qsDOMkH6jm6-SsQ@mail.gmail.com
обсуждение исходный текст
Ответ на Re: [PATCH] Tab completion for ALTER TYPE …RENAME VALUE …  (ilmari@ilmari.org (Dagfinn Ilmari Mannsåker))
Ответы Re: Re: [PATCH] Tab completion for ALTER TYPE… RENAME VALUE …  (ilmari@ilmari.org (Dagfinn Ilmari Mannsåker))
Список pgsql-hackers
Hello,

2016-09-12 16:16 GMT+03:00 Dagfinn Ilmari Mannsåker <ilmari@ilmari.org>:
>
> I've added it to the 2016-11 commit fest:
> https://commitfest.postgresql.org/11/795/
>
> - ilmari

I've tested your patch.

Patch was applied to the master. It seems there is no need to rebase
it. PostgreSQL was compiled without errors with the patch.

I've tested the patch with type:

CREATE TYPE rainbow AS ENUM ('red', 'orange', 'yellow', 'green',
'blue', 'purple');

And the following completions work as expected:

=> ALTER TYPE rainbow RENAME <tab>
ATTRIBUTE  TO         VALUE

=> ALTER TYPE rainbow RENAME VALUE <tab>
'blue'    'green'   'orange'  'purple'  'red'     'yellow'

It seems that the patch can be commited without any fixes. So I marked
it as "Ready for Committer".

--
Sincerely,
Artur Zakirov
Postgres Professional: http://www.postgrespro.com
Russian Postgres Company



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

Предыдущее
От: Artur Zakirov
Дата:
Сообщение: Re: Bug in to_timestamp().
Следующее
От: Tom Lane
Дата:
Сообщение: Re: Add support for SRF and returning composites to pl/tcl