diff options
| author | Bruce Momjian <bruce@momjian.us> | 2002-03-05 00:01:03 +0000 |
|---|---|---|
| committer | Bruce Momjian <bruce@momjian.us> | 2002-03-05 00:01:03 +0000 |
| commit | 25b0b09fd3c358d4377f55159197486c4634c53d (patch) | |
| tree | 552821344bd1bcf6c00d99892a561620dec255d4 /src/bin/psql/settings.h | |
| parent | 294f0d4bd66af9b74beba1efaeb318045a5a060b (diff) | |
| download | postgresql-25b0b09fd3c358d4377f55159197486c4634c53d.tar.gz | |
Add \timing patch to psql. Times all queries.
Greg Sabino Mullane
Diffstat (limited to 'src/bin/psql/settings.h')
| -rw-r--r-- | src/bin/psql/settings.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/bin/psql/settings.h b/src/bin/psql/settings.h index 21faca3233..cb41920eb9 100644 --- a/src/bin/psql/settings.h +++ b/src/bin/psql/settings.h @@ -3,7 +3,7 @@ * * Copyright 2000 by PostgreSQL Global Development Group * - * $Header: /cvsroot/pgsql/src/bin/psql/settings.h,v 1.12 2001/10/28 06:25:58 momjian Exp $ + * $Header: /cvsroot/pgsql/src/bin/psql/settings.h,v 1.13 2002/03/05 00:01:02 momjian Exp $ */ #ifndef SETTINGS_H #define SETTINGS_H @@ -50,6 +50,7 @@ typedef struct _psqlSettings bool issuper; /* is the current user a superuser? (used * to form the prompt) */ + bool timing; /* timing of all queries */ } PsqlSettings; extern PsqlSettings pset; |
