diff options
Diffstat (limited to 'src/backend/optimizer/path/indxpath.c')
-rw-r--r-- | src/backend/optimizer/path/indxpath.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/backend/optimizer/path/indxpath.c b/src/backend/optimizer/path/indxpath.c index cfd20e8f488..2dab5e54cdd 100644 --- a/src/backend/optimizer/path/indxpath.c +++ b/src/backend/optimizer/path/indxpath.c @@ -9,7 +9,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/optimizer/path/indxpath.c,v 1.123 2002/09/18 21:35:21 tgl Exp $ + * $Header: /cvsroot/pgsql/src/backend/optimizer/path/indxpath.c,v 1.124 2002/11/01 19:33:09 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -1226,7 +1226,7 @@ pred_test_simple_clause(Expr *predicate, Node *clause) if (!HeapTupleIsValid(tuple)) { /* this probably shouldn't fail? */ - elog(LOG, "pred_test_simple_clause: unknown test_op"); + elog(DEBUG1, "pred_test_simple_clause: unknown test_op"); return false; } aform = (Form_pg_amop) GETSTRUCT(tuple); @@ -1255,7 +1255,7 @@ pred_test_simple_clause(Expr *predicate, Node *clause) if (isNull) { - elog(LOG, "pred_test_simple_clause: null test result"); + elog(DEBUG1, "pred_test_simple_clause: null test result"); return false; } return DatumGetBool(test_result); |