aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMagnus Hagander <magnus@hagander.net>2008-03-26 15:24:56 +0000
committerMagnus Hagander <magnus@hagander.net>2008-03-26 15:24:56 +0000
commit2d7705e85e22c8798fe70234aed8161ed84fdaa8 (patch)
treea3b284700c33b01e2afd86627de8d4ecf1d4aa0d /src
parent9469d083e5aaded40447f527f5b2415b24fd296e (diff)
downloadpostgresql-2d7705e85e22c8798fe70234aed8161ed84fdaa8.tar.gz
postgresql-2d7705e85e22c8798fe70234aed8161ed84fdaa8.zip
Include \password in the psql help.
While at it, change the order of the documented options to be alphabetically again.
Diffstat (limited to 'src')
-rw-r--r--src/bin/psql/help.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/bin/psql/help.c b/src/bin/psql/help.c
index 9d0eb40a24a..341a754ae6a 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.122 2008/01/20 21:13:55 tgl Exp $
+ * $PostgreSQL: pgsql/src/bin/psql/help.c,v 1.123 2008/03/26 15:24:56 mha Exp $
*/
#include "postgres_fe.h"
@@ -177,14 +177,16 @@ slashUsage(unsigned short int pager)
fprintf(output, _(" \\encoding [ENCODING]\n"
" show or set client encoding\n"));
fprintf(output, _(" \\h [NAME] help on syntax of SQL commands, * for all commands\n"));
+ fprintf(output, _(" \\prompt [TEXT] NAME\n"
+ " prompt user to set internal variable\n"));
+ fprintf(output, _(" \\password [USERNAME]\n"
+ " securely change the password for a user\n"));
fprintf(output, _(" \\q quit psql\n"));
fprintf(output, _(" \\set [NAME [VALUE]]\n"
" set internal variable, or list all if no parameters\n"));
fprintf(output, _(" \\timing toggle timing of commands (currently %s)\n"),
ON(pset.timing));
fprintf(output, _(" \\unset NAME unset (delete) internal variable\n"));
- fprintf(output, _(" \\prompt [TEXT] NAME\n"
- " prompt user to set internal variable\n"));
fprintf(output, _(" \\! [COMMAND] execute command in shell or start interactive shell\n"));
fprintf(output, "\n");