diff options
author | Robert Haas <rhaas@postgresql.org> | 2015-04-02 10:10:22 -0400 |
---|---|---|
committer | Robert Haas <rhaas@postgresql.org> | 2015-04-02 10:10:22 -0400 |
commit | 4cd639baf4bd35dd7fc924009203349b81bdcd68 (patch) | |
tree | 257af95aee58af4bc460a73e4224b4609f9b8c5f /src/bin/psql/help.c | |
parent | 7dae3cf68cf59c37163df42fb0d2b66fed9996f4 (diff) | |
download | postgresql-4cd639baf4bd35dd7fc924009203349b81bdcd68.tar.gz postgresql-4cd639baf4bd35dd7fc924009203349b81bdcd68.zip |
Revert "psql: fix \connect with URIs and conninfo strings"
This reverts commit fcef1617295c074f2684c887627184d2fc26ac04, about
which both the buildfarm and my local machine are very unhappy.
Diffstat (limited to 'src/bin/psql/help.c')
-rw-r--r-- | src/bin/psql/help.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bin/psql/help.c b/src/bin/psql/help.c index ea05c3e37be..f58f5e52f33 100644 --- a/src/bin/psql/help.c +++ b/src/bin/psql/help.c @@ -260,11 +260,11 @@ slashUsage(unsigned short int pager) fprintf(output, _("Connection\n")); if (currdb) - fprintf(output, _(" \\c[onnect] {[DBNAME|- USER|- HOST|- PORT|-] | conninfo}\n" + fprintf(output, _(" \\c[onnect] [DBNAME|- USER|- HOST|- PORT|-]\n" " connect to new database (currently \"%s\")\n"), currdb); else - fprintf(output, _(" \\c[onnect] {[DBNAME|- USER|- HOST|- PORT|-] | conninfo}\n" + fprintf(output, _(" \\c[onnect] [DBNAME|- USER|- HOST|- PORT|-]\n" " connect to new database (currently no connection)\n")); fprintf(output, _(" \\encoding [ENCODING] show or set client encoding\n")); fprintf(output, _(" \\password [USERNAME] securely change the password for a user\n")); |