Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 884cd4b

Browse files
committed
Reduce a couple of debugging messages from LOG to DEBUG1 category.
1 parent 8d43947 commit 884cd4b

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

src/backend/executor/nodeAgg.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
* Portions Copyright (c) 1994, Regents of the University of California
4747
*
4848
* IDENTIFICATION
49-
* $Header: /cvsroot/pgsql/src/backend/executor/nodeAgg.c,v 1.89 2002/10/04 17:19:55 tgl Exp $
49+
* $Header: /cvsroot/pgsql/src/backend/executor/nodeAgg.c,v 1.90 2002/11/01 19:33:09 tgl Exp $
5050
*
5151
*-------------------------------------------------------------------------
5252
*/
@@ -771,7 +771,7 @@ ExecInitAgg(Agg *node, EState *estate, Plan *parent)
771771
* So, just make a debug note, and force numaggs positive so that
772772
* palloc()s below don't choke.
773773
*/
774-
elog(LOG, "ExecInitAgg: could not find any aggregate functions");
774+
elog(DEBUG1, "ExecInitAgg: could not find any aggregate functions");
775775
numaggs = 1;
776776
}
777777

src/backend/executor/nodeAppend.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
*
99
*
1010
* IDENTIFICATION
11-
* $Header: /cvsroot/pgsql/src/backend/executor/nodeAppend.c,v 1.46 2002/09/02 01:05:05 tgl Exp $
11+
* $Header: /cvsroot/pgsql/src/backend/executor/nodeAppend.c,v 1.47 2002/11/01 19:33:09 tgl Exp $
1212
*
1313
*-------------------------------------------------------------------------
1414
*/
@@ -292,7 +292,7 @@ ExecProcAppend(Append *node)
292292
subnode = (Plan *) nth(whichplan, appendplans);
293293

294294
if (subnode == NULL)
295-
elog(LOG, "ExecProcAppend: subnode is NULL");
295+
elog(DEBUG1, "ExecProcAppend: subnode is NULL");
296296

297297
/*
298298
* get a tuple from the subplan

src/backend/optimizer/path/indxpath.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
*
1010
*
1111
* IDENTIFICATION
12-
* $Header: /cvsroot/pgsql/src/backend/optimizer/path/indxpath.c,v 1.123 2002/09/18 21:35:21 tgl Exp $
12+
* $Header: /cvsroot/pgsql/src/backend/optimizer/path/indxpath.c,v 1.124 2002/11/01 19:33:09 tgl Exp $
1313
*
1414
*-------------------------------------------------------------------------
1515
*/
@@ -1226,7 +1226,7 @@ pred_test_simple_clause(Expr *predicate, Node *clause)
12261226
if (!HeapTupleIsValid(tuple))
12271227
{
12281228
/* this probably shouldn't fail? */
1229-
elog(LOG, "pred_test_simple_clause: unknown test_op");
1229+
elog(DEBUG1, "pred_test_simple_clause: unknown test_op");
12301230
return false;
12311231
}
12321232
aform = (Form_pg_amop) GETSTRUCT(tuple);
@@ -1255,7 +1255,7 @@ pred_test_simple_clause(Expr *predicate, Node *clause)
12551255

12561256
if (isNull)
12571257
{
1258-
elog(LOG, "pred_test_simple_clause: null test result");
1258+
elog(DEBUG1, "pred_test_simple_clause: null test result");
12591259
return false;
12601260
}
12611261
return DatumGetBool(test_result);

0 commit comments

Comments
 (0)