|
7 | 7 | *
|
8 | 8 | *
|
9 | 9 | * IDENTIFICATION
|
10 |
| - * $Header: /cvsroot/pgsql/src/bin/psql/Attic/psql.c,v 1.115 1997/11/24 14:05:02 momjian Exp $ |
| 10 | + * $Header: /cvsroot/pgsql/src/bin/psql/Attic/psql.c,v 1.116 1997/11/24 14:15:11 momjian Exp $ |
11 | 11 | *
|
12 | 12 | *-------------------------------------------------------------------------
|
13 | 13 | */
|
@@ -1725,15 +1725,15 @@ HandleSlashCmds(PsqlSettings *pset,
|
1725 | 1725 | ORDER BY return_type, function;",
|
1726 | 1726 | false, false,0);
|
1727 | 1727 | SendQuery(&success,pset,"\
|
1728 |
| -SELECTt.typname asrets, \ |
| 1728 | +SELECTt.typname asrtns, \ |
1729 | 1729 | p.proname as function, \
|
1730 | 1730 | oid8types(p.proargtypes) as arguments, \
|
1731 | 1731 | substr(obj_description(p.oid),1,34) \
|
1732 | 1732 | FROM pg_proc p, pg_type t \
|
1733 | 1733 | WHERE p.prorettype = t.oid and \
|
1734 | 1734 | (pronargs = 0 or oid8types(p.proargtypes) != '') and \
|
1735 | 1735 | t.typname = 'bool' \
|
1736 |
| -ORDER BYrets, function;", |
| 1736 | +ORDER BYrtns, function;", |
1737 | 1737 | false, false,0);
|
1738 | 1738 | }
|
1739 | 1739 | elseif (strncmp(cmd,"di",2)==0)
|
|