Re: [HACKERS] Re: [PATCH] Tab completion for ALTER TYPE … RENAME VALUE … - Mailing list pgsql-hackers

From Artur Zakirov
Subject Re: [HACKERS] Re: [PATCH] Tab completion for ALTER TYPE … RENAME VALUE …
Date
Msg-id CAKNkYnw8wVX5htytcQ8LGOuYY4kBbq7F4L5qsDOMkH6jm6-SsQ@mail.gmail.com
Whole thread Raw
In response to Re: [PATCH] Tab completion for ALTER TYPE …RENAME VALUE …  (ilmari@ilmari.org (Dagfinn Ilmari Mannsåker))
Responses Re: Re: [PATCH] Tab completion for ALTER TYPE… RENAME VALUE …
List 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 by date:

Previous
From: Artur Zakirov
Date:
Subject: Re: Bug in to_timestamp().
Next
From: Tom Lane
Date:
Subject: Re: Add support for SRF and returning composites to pl/tcl