]> granicus.if.org Git - postgresql/commitdiff
Remove debugging Assert that should never have been committed in the
authorTom Lane <tgl@sss.pgh.pa.us>
Fri, 11 Aug 2000 18:35:50 +0000 (18:35 +0000)
committerTom Lane <tgl@sss.pgh.pa.us>
Fri, 11 Aug 2000 18:35:50 +0000 (18:35 +0000)
first place :-(

src/backend/utils/cache/fcache.c

index 15ac990e31d7376c44088d6ef6ead47cf3763e65..080f70b6ce8fd5d9e4444a42be7a5879558faff0 100644 (file)
@@ -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;
 }