diff options
author | Heikki Linnakangas <heikki.linnakangas@iki.fi> | 2008-06-11 10:55:43 +0000 |
---|---|---|
committer | Heikki Linnakangas <heikki.linnakangas@iki.fi> | 2008-06-11 10:55:43 +0000 |
commit | 15dc3f59c7d23d27453170c4caf3ee370cd154c6 (patch) | |
tree | b4338783d939f75e628c077cb55e62b573ac5397 /src/bin/psql/help.c | |
parent | 8b64a2642a6cf9aa5ce439ec2862e1d2bb968be7 (diff) | |
download | postgresql-15dc3f59c7d23d27453170c4caf3ee370cd154c6.tar.gz postgresql-15dc3f59c7d23d27453170c4caf3ee370cd154c6.zip |
Update "help" output to reflect that \timing now takes an optional on/off
argument.
Diffstat (limited to 'src/bin/psql/help.c')
-rw-r--r-- | src/bin/psql/help.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/bin/psql/help.c b/src/bin/psql/help.c index b9fd2d55e52..7153fbb3400 100644 --- a/src/bin/psql/help.c +++ b/src/bin/psql/help.c @@ -3,7 +3,7 @@ * * Copyright (c) 2000-2008, PostgreSQL Global Development Group * - * $PostgreSQL: pgsql/src/bin/psql/help.c,v 1.128 2008/05/16 17:17:00 momjian Exp $ + * $PostgreSQL: pgsql/src/bin/psql/help.c,v 1.129 2008/06/11 10:55:43 heikki Exp $ */ #include "postgres_fe.h" @@ -244,10 +244,10 @@ slashUsage(unsigned short int pager) fprintf(output, "\n"); fprintf(output, _("External\n")); - fprintf(output, _(" \\cd [DIR] change the current working directory\n")); - fprintf(output, _(" \\timing toggle timing of commands (currently %s)\n"), + fprintf(output, _(" \\cd [DIR] change the current working directory\n")); + fprintf(output, _(" \\timing [on|off] toggle timing of commands (currently %s)\n"), ON(pset.timing)); - fprintf(output, _(" \\! [COMMAND] execute command in shell or start interactive shell\n")); + fprintf(output, _(" \\! [COMMAND] execute command in shell or start interactive shell\n")); fprintf(output, "\n"); fprintf(output, _("Variable\n")); |