*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/backend/tcop/pquery.c,v 1.73 2003/09/25 18:58:35 tgl Exp $
+ * $Header: /cvsroot/pgsql/src/backend/tcop/pquery.c,v 1.73.2.1 2004/03/05 00:21:51 momjian Exp $
*
*-------------------------------------------------------------------------
*/
if (completionTag)
completionTag[0] = '\0';
+ if (portal->strategy != PORTAL_MULTI_QUERY)
+ {
+ ereport(DEBUG3,
+ (errmsg_internal("PortalRun")));
+ /* PORTAL_MULTI_QUERY logs its own stats per query */
+ if (log_executor_stats)
+ ResetUsage();
+ }
+
+ if (log_executor_stats && portal->strategy != PORTAL_MULTI_QUERY)
+
/*
* Check for improper portal use, and mark portal active.
*/
PortalContext = savePortalContext;
QueryContext = saveQueryContext;
+ if (log_executor_stats && portal->strategy != PORTAL_MULTI_QUERY)
+ ShowUsage("EXECUTOR STATISTICS");
+
return result;
}