diff options
| author | Peter Eisentraut | 2003-10-16 23:45:29 +0000 |
|---|---|---|
| committer | Peter Eisentraut | 2003-10-16 23:45:29 +0000 |
| commit | 4a48c671d27346215ded9e32a0a22696a23928b0 (patch) | |
| tree | 7f2b387f632c8f693ccb8f8bf03f019b092964f5 /src/bin | |
| parent | 52b59a7becc1b820a07986907337d85ac3ccac87 (diff) | |
There should not be an automatic '()' after a function name when
tab-completing.
Diffstat (limited to 'src/bin')
| -rw-r--r-- | src/bin/psql/tab-complete.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bin/psql/tab-complete.c b/src/bin/psql/tab-complete.c index 4e12621e4c..dc954fac18 100644 --- a/src/bin/psql/tab-complete.c +++ b/src/bin/psql/tab-complete.c @@ -3,7 +3,7 @@ * * Copyright (c) 2000-2003, PostgreSQL Global Development Group * - * $Header: /cvsroot/pgsql/src/bin/psql/tab-complete.c,v 1.87 2003/10/16 20:03:09 tgl Exp $ + * $Header: /cvsroot/pgsql/src/bin/psql/tab-complete.c,v 1.88 2003/10/16 23:45:29 petere Exp $ */ /*---------------------------------------------------------------------- @@ -223,7 +223,7 @@ initialize_readline(void) " WHERE substring(pg_catalog.pg_encoding_to_char(conforencoding),1,%d)=UPPER('%s')" #define Query_for_list_of_functions \ -" SELECT pg_catalog.quote_ident(proname) || '()' "\ +" SELECT pg_catalog.quote_ident(proname) "\ " FROM pg_catalog.pg_proc p "\ " WHERE substring(pg_catalog.quote_ident(proname),1,%d)='%s'"\ " AND pg_catalog.pg_function_is_visible(p.oid) "\ |
