diff options
author | Bruce Momjian <bruce@momjian.us> | 2003-12-01 22:34:48 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2003-12-01 22:34:48 +0000 |
commit | 8c4af96fb026333b8dc592e0c06715cf5aefa7e0 (patch) | |
tree | 33a06955788c784e0ef402e4efdefe93ff4e8db6 /src/bin/psql/help.c | |
parent | c217b36e17351b80cd545943f26c118e42649ea1 (diff) | |
download | postgresql-8c4af96fb026333b8dc592e0c06715cf5aefa7e0.tar.gz postgresql-8c4af96fb026333b8dc592e0c06715cf5aefa7e0.zip |
This makes help like this:
\lo_export LOBOID FILE
\lo_import FILE [COMMENT]
\lo_list
\lo_unlink LOBOID large object operations
Instead of not saying anything about what arguments are required.
Christopher Kings-Lynne
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 f36c71a56d9..10e3ed07838 100644 --- a/src/bin/psql/help.c +++ b/src/bin/psql/help.c @@ -3,7 +3,7 @@ * * Copyright (c) 2000-2003, PostgreSQL Global Development Group * - * $PostgreSQL: pgsql/src/bin/psql/help.c,v 1.83 2003/12/01 22:21:54 momjian Exp $ + * $PostgreSQL: pgsql/src/bin/psql/help.c,v 1.84 2003/12/01 22:34:48 momjian Exp $ */ #include "postgres_fe.h" #include "common.h" @@ -246,10 +246,10 @@ slashUsage(unsigned short int pager) fprintf(output, _("Copy, Large Object\n")); fprintf(output, _(" \\copy ... perform SQL COPY with data stream to the client host\n")); - fprintf(output, _(" \\lo_export\n" - " \\lo_import\n" + fprintf(output, _(" \\lo_export LOBOID FILE\n" + " \\lo_import FILE [COMMENT] \n" " \\lo_list\n" - " \\lo_unlink large object operations\n")); + " \\lo_unlink LOBOID large object operations\n")); if (output != stdout) { |