diff options
author | Bruce Momjian <bruce@momjian.us> | 1998-01-25 20:23:40 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 1998-01-25 20:23:40 +0000 |
commit | d57753efd45c9177bcdfda2b5857a79e66f4cce7 (patch) | |
tree | b051f11846f23fa217e902163c3ea6f24029c5fd /src/bin/psql/psql.c | |
parent | 594aae99ae28dbeb2da1b8f09396703767fcf2d0 (diff) | |
download | postgresql-d57753efd45c9177bcdfda2b5857a79e66f4cce7.tar.gz postgresql-d57753efd45c9177bcdfda2b5857a79e66f4cce7.zip |
Add cash_words_out and fix \df width.
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 ab519b4143c..a4b5bf60087 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.129 1998/01/23 19:22:24 scrappy Exp $ + * $Header: /cvsroot/pgsql/src/bin/psql/Attic/psql.c,v 1.130 1998/01/25 20:23:36 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -1770,7 +1770,7 @@ HandleSlashCmds(PsqlSettings *pset, SendQuery(&success, pset,"\ SELECT t.typname as return_type, \ p.proname as function, \ - oid8types(p.proargtypes) as arguments, \ + substr(oid8types(p.proargtypes),1,20) as arguments, \ substr(obj_description(p.oid),1,23) \ FROM pg_proc p, pg_type t \ WHERE p.prorettype = t.oid and \ |