diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2000-03-01 21:10:05 +0000 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2000-03-01 21:10:05 +0000 |
commit | c75adac757b302962a8f68eaec0121c59805fd1e (patch) | |
tree | f652fbe720431d3624db83ccc2d71320aa593829 /src/bin/psql/help.c | |
parent | 19c29f923678d90c7d77cc435597b47f5d600e94 (diff) | |
download | postgresql-c75adac757b302962a8f68eaec0121c59805fd1e.tar.gz postgresql-c75adac757b302962a8f68eaec0121c59805fd1e.zip |
More fixes for psql ^C handling, especially during copy. Still doesn't
cope so well with copy to but that will have to wait for the next release.
Also added -X option to prevent reading .psqlrc startup file.
Diffstat (limited to 'src/bin/psql/help.c')
-rw-r--r-- | src/bin/psql/help.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/bin/psql/help.c b/src/bin/psql/help.c index 8fa9187d2da..33c187bdb2a 100644 --- a/src/bin/psql/help.c +++ b/src/bin/psql/help.c @@ -3,7 +3,7 @@ * * Copyright 2000 by PostgreSQL Global Development Group * - * $Header: /cvsroot/pgsql/src/bin/psql/help.c,v 1.22 2000/02/20 14:28:20 petere Exp $ + * $Header: /cvsroot/pgsql/src/bin/psql/help.c,v 1.23 2000/03/01 21:09:58 petere Exp $ */ #include "postgres.h" #include "help.h" @@ -124,10 +124,11 @@ usage(void) env = user; printf(" -U <username> Specify database username (default: %s)\n", env); - puts( " -x Turn on expanded table output (-P expanded)"); puts( " -v name=val Set psql variable 'name' to 'value'"); puts( " -V Show version information and exit"); puts( " -W Prompt for password (should happen automatically)"); + puts( " -x Turn on expanded table output (-P expanded)"); + puts( " -X Do not read startup file (~/.psqlrc)"); puts( "\nFor more information, type \"\\?\" (for internal commands) or \"\\help\""); puts( "(for SQL commands) from within psql, or consult the psql section in"); |