diff options
author | Magnus Hagander | 2007-04-16 20:16:11 +0000 |
---|---|---|
committer | Magnus Hagander | 2007-04-16 20:16:11 +0000 |
commit | d94f7a1005942f6ce01c316d2864ccfb01a6a6df (patch) | |
tree | 4d630e642419fbd1657c236c8291e2a31b7a2f64 | |
parent | acce7d055b50ed49a7410d3e3d31aad1c1844e9c (diff) |
Don't write timing output in quiet mode.
Merlin Moncure
-rw-r--r-- | src/bin/psql/common.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/psql/common.c b/src/bin/psql/common.c index 4a49efeda7..ebd6aee017 100644 --- a/src/bin/psql/common.c +++ b/src/bin/psql/common.c @@ -918,7 +918,7 @@ SendQuery(const char *query) PQclear(results); /* Possible microtiming output */ - if (OK && pset.timing) + if (OK && pset.timing && !pset.quiet) printf(_("Time: %.3f ms\n"), elapsed_msec); /* check for events that may occur during query execution */ |