From 91742c5c240c6b3cfa18f41c7985423c84cb664c Mon Sep 17 00:00:00 2001
From: Bruce Momjian <bruce@momjian.us>
Date: Mon, 24 Nov 1997 14:15:11 +0000
Subject: [PATCH] Change heading.

---
 src/bin/psql/psql.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/bin/psql/psql.c b/src/bin/psql/psql.c
index 819e2a584b0..dbe73bf4776 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.115 1997/11/24 14:05:02 momjian Exp $
+ *	  $Header: /cvsroot/pgsql/src/bin/psql/Attic/psql.c,v 1.116 1997/11/24 14:15:11 momjian Exp $
  *
  *-------------------------------------------------------------------------
  */
@@ -1725,7 +1725,7 @@ HandleSlashCmds(PsqlSettings *pset,
 					ORDER BY return_type, function;",
 					false, false, 0);
 				SendQuery(&success, pset,"\
-					SELECT	t.typname as rets, \
+					SELECT	t.typname as rtns, \
 							p.proname as function, \
 							oid8types(p.proargtypes) as arguments, \
 							substr(obj_description(p.oid),1,34) \
@@ -1733,7 +1733,7 @@ HandleSlashCmds(PsqlSettings *pset,
 					WHERE p.prorettype = t.oid and \
 							(pronargs = 0 or oid8types(p.proargtypes) != '') and \
 							t.typname = 'bool' \
-					ORDER BY rets, function;",
+					ORDER BY rtns, function;",
 					false, false, 0);
 			}
 			else if (strncmp(cmd, "di", 2) == 0)
-- 
GitLab