Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 1b7ac7f

Browse files
committed
Remove automatic '()' in other branch of UNION as well.
1 parent fe1b503 commit 1b7ac7f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/bin/psql/tab-complete.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
*
44
* Copyright (c) 2000-2003, PostgreSQL Global Development Group
55
*
6-
* $Header: /cvsroot/pgsql/src/bin/psql/tab-complete.c,v 1.88 2003/10/16 23:45:29 petere Exp $
6+
* $Header: /cvsroot/pgsql/src/bin/psql/tab-complete.c,v 1.89 2003/10/17 11:52:06 petere Exp $
77
*/
88

99
/*----------------------------------------------------------------------
@@ -232,7 +232,7 @@ initialize_readline(void)
232232
" FROM pg_catalog.pg_namespace "\
233233
" WHERE substring(pg_catalog.quote_ident(nspname) || '.',1,%d)='%s' "\
234234
" UNION "\
235-
" SELECT pg_catalog.quote_ident(nspname) || '.' || pg_catalog.quote_ident(proname) || '()' "\
235+
" SELECT pg_catalog.quote_ident(nspname) || '.' || pg_catalog.quote_ident(proname) "\
236236
" FROM pg_catalog.pg_proc p, pg_catalog.pg_namespace n "\
237237
" WHERE substring(pg_catalog.quote_ident(nspname) || '.' || pg_catalog.quote_ident(proname),1,%d)='%s' "\
238238
" AND pronamespace = n.oid "\

0 commit comments

Comments
 (0)