Re: [HACKERS] PATCH: psql tab completion for SELECT - Mailing list pgsql-hackers

From David Fetter
Subject Re: [HACKERS] PATCH: psql tab completion for SELECT
Date
Msg-id 20171112201322.GA16913@fetter.org
Whole thread Raw
In response to [HACKERS] PATCH: psql tab completion for SELECT  (Edmund Horner <ejrh00@gmail.com>)
Responses Re: [HACKERS] PATCH: psql tab completion for SELECT  (Michael Paquier <michael.paquier@gmail.com>)
List pgsql-hackers
On Mon, Nov 06, 2017 at 05:28:55PM +1300, Edmund Horner wrote:
> Hi pgsql-hackers,
> 
> Here's a little draft patch to add *some* tab completion ability for
> SELECT in psql.  I have often missed the ability, especially with
> invocations of utility functions.
> 
> It would be nice to be able to suggest column names from the
> relevant tables in the query, but, as the SQL language puts the
> column list before the FROM clause, we have to use columns from all
> tables; I'm certainly not the first to be frustrated by this
> language feature, but we can't do much about it.
> 
> What my patch does:
> 
> For a command line with the single word SELECT, column names and
> function names will be used for completions of the next word.
> Function names have a "(" suffix added, largely because it makes
> them easier to distinguish in the completion list.
> 
> Only the first select-list item can be tab-completed; i.e. SELECT
> foo, b<tab> won't find column bar.

That can be fixed later.

> Examples:
> 
> postgres=# select rel<tab>
> relacl               relchecks            relhasindex
> relhassubclass       (etc.)
> 
> postgres=# select str<tab>
> string_to_array(  strip(            strpos(

Neat!

Please add this to the upcoming (2018-01) commitfest at
https://commitfest.postgresql.org/

Best,
David.
-- 
David Fetter <david(at)fetter(dot)org> http://fetter.org/
Phone: +1 415 235 3778

Remember to vote!
Consider donating to Postgres: http://www.postgresql.org/about/donate


-- 
Sent via pgsql-hackers mailing list (pgsql-hackers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-hackers

pgsql-hackers by date:

Previous
From: Joe Conway
Date:
Subject: Re: [HACKERS] Row Level Security Bug ?
Next
From: Tom Lane
Date:
Subject: Re: [HACKERS] Variable substitution in psql backtick expansion