Commit cbaf1aae authored by Bruce Momjian's avatar Bruce Momjian

Fix log_executor_stats if() test.

parent 2ef0ff89
...@@ -8,7 +8,7 @@ ...@@ -8,7 +8,7 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $PostgreSQL: pgsql/src/backend/tcop/pquery.c,v 1.75 2004/03/05 00:21:41 momjian Exp $ * $PostgreSQL: pgsql/src/backend/tcop/pquery.c,v 1.76 2004/03/18 23:26:17 momjian Exp $
* *
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */
...@@ -406,17 +406,14 @@ PortalRun(Portal portal, long count, ...@@ -406,17 +406,14 @@ PortalRun(Portal portal, long count,
if (completionTag) if (completionTag)
completionTag[0] = '\0'; completionTag[0] = '\0';
if (portal->strategy != PORTAL_MULTI_QUERY) if (log_executor_stats && portal->strategy != PORTAL_MULTI_QUERY)
{ {
ereport(DEBUG3, ereport(DEBUG3,
(errmsg_internal("PortalRun"))); (errmsg_internal("PortalRun")));
/* PORTAL_MULTI_QUERY logs its own stats per query */ /* PORTAL_MULTI_QUERY logs its own stats per query */
if (log_executor_stats) ResetUsage();
ResetUsage();
} }
if (log_executor_stats && portal->strategy != PORTAL_MULTI_QUERY)
/* /*
* Check for improper portal use, and mark portal active. * Check for improper portal use, and mark portal active.
*/ */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment