aboutsummaryrefslogtreecommitdiff
path: root/src/backend/executor/nodeGroup.c
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2002-05-17 22:35:13 +0000
committerTom Lane <tgl@sss.pgh.pa.us>2002-05-17 22:35:13 +0000
commit22d641a7d42fba17e1f9310a8444763b4c3aa47f (patch)
tree5f0460209e700e7d1ea1a2dc48ea221fbf302853 /src/backend/executor/nodeGroup.c
parent940f772a292124cb4506ffd7c9c2e953f9db3f33 (diff)
downloadpostgresql-22d641a7d42fba17e1f9310a8444763b4c3aa47f.tar.gz
postgresql-22d641a7d42fba17e1f9310a8444763b4c3aa47f.zip
Get rid of the last few uses of typeidTypeName() rather than
format_type_be() in error messages.
Diffstat (limited to 'src/backend/executor/nodeGroup.c')
-rw-r--r--src/backend/executor/nodeGroup.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/backend/executor/nodeGroup.c b/src/backend/executor/nodeGroup.c
index 881dfa4f1ba..0ba4d679ed6 100644
--- a/src/backend/executor/nodeGroup.c
+++ b/src/backend/executor/nodeGroup.c
@@ -15,7 +15,7 @@
* locate group boundaries.
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/backend/executor/nodeGroup.c,v 1.45 2002/04/16 23:08:10 tgl Exp $
+ * $Header: /cvsroot/pgsql/src/backend/executor/nodeGroup.c,v 1.46 2002/05/17 22:35:12 tgl Exp $
*
*-------------------------------------------------------------------------
*/
@@ -27,7 +27,7 @@
#include "executor/executor.h"
#include "executor/nodeGroup.h"
#include "parser/parse_oper.h"
-#include "parser/parse_type.h"
+#include "utils/builtins.h"
#include "utils/lsyscache.h"
#include "utils/syscache.h"
@@ -493,8 +493,8 @@ execTuplesMatchPrepare(TupleDesc tupdesc,
eq_function = compatible_oper_funcid(makeList1(makeString("=")),
typid, typid, true);
if (!OidIsValid(eq_function))
- elog(ERROR, "Unable to identify an equality operator for type '%s'",
- typeidTypeName(typid));
+ elog(ERROR, "Unable to identify an equality operator for type %s",
+ format_type_be(typid));
fmgr_info(eq_function, &eqfunctions[i]);
}