if (save_log_duration || save_log_min_duration_statement > 0)
{
long usecs;
+ bool print_statement;
gettimeofday(&stop_t, NULL);
if (stop_t.tv_usec < start_t.tv_usec)
* Output a duration_statement to the log if the query has exceeded
* the min duration, or if we are to print all durations.
*/
- if (save_log_duration ||
- (save_log_min_duration_statement > 0 &&
- usecs >= save_log_min_duration_statement * 1000))
+ print_statement = (save_log_min_duration_statement > 0 &&
+ usecs >= save_log_min_duration_statement * 1000);
+
+ if (save_log_duration || print_statement)
ereport(LOG,
- (errmsg("duration: %ld.%06ld %s",
+ (errmsg("duration(secs): %ld.%06ld%s%s",
(long) (stop_t.tv_sec - start_t.tv_sec),
(long) (stop_t.tv_usec - start_t.tv_usec),
- query_string)));
+ print_statement ? " " : "",
+ print_statement ? query_string : "")));
}
if (save_log_statement_stats)
if (!IsUnderPostmaster)
{
puts("\nPOSTGRES backend interactive interface ");
- puts("$Revision: 1.369 $ $Date: 2003/10/02 06:34:04 $\n");
+ puts("$Revision: 1.370 $ $Date: 2003/10/04 02:47:04 $\n");
}
/*