diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2002-08-10 19:35:01 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2002-08-10 19:35:01 +0000 |
commit | 8be9bd83acd43762cf0dc8a45229a693896e7755 (patch) | |
tree | 6688bc82949dda85af40ce312b137450c4cba95b /src/bin/psql/common.c | |
parent | a5e6e9935714959db56607b327ce0f4ff68751c1 (diff) | |
download | postgresql-8be9bd83acd43762cf0dc8a45229a693896e7755.tar.gz postgresql-8be9bd83acd43762cf0dc8a45229a693896e7755.zip |
psql prints its version number in its startup message, per recent
discussion. Also, cause the \timing command to display time in a
format consistent with the backend's EXPLAIN ANALYZE output.
Diffstat (limited to 'src/bin/psql/common.c')
-rw-r--r-- | src/bin/psql/common.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/bin/psql/common.c b/src/bin/psql/common.c index 1b1e4626609..9362886c4ce 100644 --- a/src/bin/psql/common.c +++ b/src/bin/psql/common.c @@ -3,7 +3,7 @@ * * Copyright 2000 by PostgreSQL Global Development Group * - * $Header: /cvsroot/pgsql/src/bin/psql/common.c,v 1.41 2002/07/06 20:12:30 momjian Exp $ + * $Header: /cvsroot/pgsql/src/bin/psql/common.c,v 1.42 2002/08/10 19:35:00 tgl Exp $ */ #include "postgres_fe.h" @@ -466,7 +466,8 @@ SendQuery(const char *query) /* Possible microtiming output */ if (pset.timing && success) - printf(gettext("Total time: %.3fs\n"), ((after.tv_sec-before.tv_sec)*1000000 + after.tv_usec - before.tv_usec) / 1000000.0); + printf(gettext("Total time: %.2f msec\n"), + ((after.tv_sec-before.tv_sec)*1000000 + after.tv_usec - before.tv_usec) / 1000.0); return success; } |