In his blog entry http://www.depesz.com/2011/07/08/wish-list-for-psql/ depesz described a simple way to do tab completion for SELECT in psql:
""" Make tab-completion complete also function names – like: SELECT pg_get<tab><tab> to see all functions that start with pg_get. Make tab-completion work for columns in SELECT. I know that when writing SELECT clause, psql doesn’t know which table it will deal with, but it could search through all the columns in database. """ That seems pretty useful, and it's more or less a one-line change, as in the attached patch.
diff --git i/src/bin/psql/tab-complete.c w/src/bin/psql/tab-complete.c index 3854f7f..416aa2f 100644 --- i/src/bin/psql/tab-complete.c +++ w/src/bin/psql/tab-complete.c @@ -2555,7 +2555,9 @@ psql_completion(char *text, int start, int end) COMPLETE_WITH_CONST("IS"); /* SELECT */ - /* naah . . . */ + /* complete with columns and functions */ + else if (pg_strcasecmp(prev_wd, "SELECT") == 0) + COMPLETE_WITH_QUERY("SELECT name FROM (SELECT attname FROM pg_attribute UNION SELECT proname || '(' FROM pg_proc) t (name) WHERE substring(name,1,%d)='%s'"); /* SET, RESET, SHOW */ /* Complete with a variable name */
-- Sent via pgsql-hackers mailing list (pgsql-hackers@postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-hackers