diff options
author | Bruce Momjian <bruce@momjian.us> | 1998-01-28 20:44:42 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 1998-01-28 20:44:42 +0000 |
commit | 0427469f57a256f99d2766a443b969385e737369 (patch) | |
tree | 10dcc63648d651efa82b3ef9eaf9ae24b9adb259 /src/bin/psql/psql.c | |
parent | 7fc4c76edb8fc9ed43baf888a4433f676bb0eaac (diff) | |
download | postgresql-0427469f57a256f99d2766a443b969385e737369.tar.gz postgresql-0427469f57a256f99d2766a443b969385e737369.zip |
psql \df cleanup and lock manual page cleanup.
Diffstat (limited to 'src/bin/psql/psql.c')
-rw-r--r-- | src/bin/psql/psql.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bin/psql/psql.c b/src/bin/psql/psql.c index a4b5bf60087..12aa081a6fa 100644 --- a/src/bin/psql/psql.c +++ b/src/bin/psql/psql.c @@ -7,7 +7,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/bin/psql/Attic/psql.c,v 1.130 1998/01/25 20:23:36 momjian Exp $ + * $Header: /cvsroot/pgsql/src/bin/psql/Attic/psql.c,v 1.131 1998/01/28 20:44:28 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -1771,7 +1771,7 @@ HandleSlashCmds(PsqlSettings *pset, SELECT t.typname as return_type, \ p.proname as function, \ substr(oid8types(p.proargtypes),1,20) as arguments, \ - substr(obj_description(p.oid),1,23) \ + substr(obj_description(p.oid),1,28) \ FROM pg_proc p, pg_type t \ WHERE p.prorettype = t.oid and \ (pronargs = 0 or oid8types(p.proargtypes) != '') and \ |