OSDN Git Service

Attached are two patches for psql's tab-completion.c.
authorBruce Momjian <bruce@momjian.us>
Thu, 27 Mar 2003 16:45:01 +0000 (16:45 +0000)
committerBruce Momjian <bruce@momjian.us>
Thu, 27 Mar 2003 16:45:01 +0000 (16:45 +0000)
commita6699f6185520ec9b6f23deb7038f6ed70056633
tree9cd8cb3a08182bf00b1d1aac53ef71ce87f893dd
parent9d6f5ee860195625c2d96499848f80d913f3d067
Attached are two patches for psql's tab-completion.c.

The first cleans up a couple of minor errors and ommissions
and adds tab completion support to more slash commands, e.g.
\dv.

The second is an attempt to add tab completion for schemas
and fully qualified relation names (e.g. public.mytable ).
I think this covers the TODO-item:
"Allow psql to do table completion for SELECT * FROM schema_part and table
completion for SELECT * FROM schema_name."

This happens via union selects querying:
 - relation_name in current search path;
 - schema_name;
 - schema.relation_name
matching the current input string.

E.g:
  SELECT p[TAB]
will produce a list of all appropriate relation names in the current search
path which begin with 'p', and also all schema names which begin with 'p';
  \d pub[TAB]
will produce any relation names in the current search path and also
any schema names beginning with 'pub';
  \d public.[TAB]
will produce a list of all relations in the schema 'public';
  \d public.my[TAB]
produces all relation names beginning with 'my' in schema 'public'.

It seems to work for me; comments, suggestions, particularly regarding
the coding and queries, are very welcome.

Note that tables, indexes, views and sequences relations in the
'pg_catalog' namespace are excluded even though they are in
the current search path. I found not doing this produced annoying behaviour
when expanding names beginning with 'p'. People who work with system
tables a lot may not like this though; I can look for another solution
if necessary.

Ian Barwick
src/bin/psql/tab-complete.c