[COMMITTERS] pgsql: psql: Fix CREATE INDEX tab completion

2016-01-12 Thread Peter Eisentraut
psql: Fix CREATE INDEX tab completion The previous code supported a syntax like CREATE INDEX name CONCURRENTLY, which never existed. Mistake introduced in commit 37ec19a15ce452ee94f32ebc3d6a9a45868e82fd. Remove the addition of CONCURRENTLY at that point. Branch -- master Details --- ht

[COMMITTERS] pgsql: psql: Update tab completion comment

2016-01-12 Thread Peter Eisentraut
psql: Update tab completion comment This just updates a comment to match the code. from Michael Paquier Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/70327030095d07abb58f9b3452dc6315a02aff0e Modified Files -- src/bin/psql/tab-complete.c |3 ++- 1 f

[COMMITTERS] pgsql: psql: Improve CREATE INDEX CONCURRENTLY tab completion

2016-01-12 Thread Peter Eisentraut
psql: Improve CREATE INDEX CONCURRENTLY tab completion The completion of CREATE INDEX CONCURRENTLY was lacking in several ways compared to a plain CREATE INDEX command: - CREATE INDEX ON completes table names, but didn't with CONCURRENTLY. - CREATE INDEX completes ON and existing index names,