aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2000-08-11 18:35:50 +0000
committerTom Lane <tgl@sss.pgh.pa.us>2000-08-11 18:35:50 +0000
commit66fd8f854fdc3faa30e4015020268217b4bb6747 (patch)
treeffaff23ae35ee48ebb3eefb525ec20f6a3b574cc
parent7090c3e858562b88cdca4f908b0cf939b9327dc6 (diff)
downloadpostgresql-66fd8f854fdc3faa30e4015020268217b4bb6747.tar.gz
postgresql-66fd8f854fdc3faa30e4015020268217b4bb6747.zip
Remove debugging Assert that should never have been committed in the
first place :-(
-rw-r--r--src/backend/utils/cache/fcache.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/backend/utils/cache/fcache.c b/src/backend/utils/cache/fcache.c
index 15ac990e31d..080f70b6ce8 100644
--- a/src/backend/utils/cache/fcache.c
+++ b/src/backend/utils/cache/fcache.c
@@ -8,7 +8,7 @@
*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/backend/utils/cache/Attic/fcache.c,v 1.35 2000/08/08 15:42:28 tgl Exp $
+ * $Header: /cvsroot/pgsql/src/backend/utils/cache/Attic/fcache.c,v 1.36 2000/08/11 18:35:50 tgl Exp $
*
*-------------------------------------------------------------------------
*/
@@ -50,9 +50,6 @@ GetDynamicFuncArgType(Var *arg, ExprContext *econtext)
elog(ERROR, "Lookup failed on type tuple for class %s",
relname);
- /* TEST: I bet this routine is unnecessary ... */
- Assert(arg->vartype == tup->t_data->t_oid);
-
return tup->t_data->t_oid;
}