aboutsummaryrefslogtreecommitdiff
path: root/src/backend/executor/nodeAgg.c
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2002-11-01 19:33:09 +0000
committerTom Lane <tgl@sss.pgh.pa.us>2002-11-01 19:33:09 +0000
commit884cd4b6bef9c4ab3bdf23a5d2e3f117def4fdb2 (patch)
tree95958154bf818ebe2513f34b77fe472c6f77bcea /src/backend/executor/nodeAgg.c
parent8d43947886e6e499086009a509db7834b6513c5d (diff)
downloadpostgresql-884cd4b6bef9c4ab3bdf23a5d2e3f117def4fdb2.tar.gz
postgresql-884cd4b6bef9c4ab3bdf23a5d2e3f117def4fdb2.zip
Reduce a couple of debugging messages from LOG to DEBUG1 category.
Diffstat (limited to 'src/backend/executor/nodeAgg.c')
-rw-r--r--src/backend/executor/nodeAgg.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/executor/nodeAgg.c b/src/backend/executor/nodeAgg.c
index 36ded53df0c..bf4a9bbbdaa 100644
--- a/src/backend/executor/nodeAgg.c
+++ b/src/backend/executor/nodeAgg.c
@@ -46,7 +46,7 @@
* Portions Copyright (c) 1994, Regents of the University of California
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/backend/executor/nodeAgg.c,v 1.89 2002/10/04 17:19:55 tgl Exp $
+ * $Header: /cvsroot/pgsql/src/backend/executor/nodeAgg.c,v 1.90 2002/11/01 19:33:09 tgl Exp $
*
*-------------------------------------------------------------------------
*/
@@ -771,7 +771,7 @@ ExecInitAgg(Agg *node, EState *estate, Plan *parent)
* So, just make a debug note, and force numaggs positive so that
* palloc()s below don't choke.
*/
- elog(LOG, "ExecInitAgg: could not find any aggregate functions");
+ elog(DEBUG1, "ExecInitAgg: could not find any aggregate functions");
numaggs = 1;
}