Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 8c4af96

Browse files
committed
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
1 parent c217b36 commit 8c4af96

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/bin/psql/help.c

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
*
44
* Copyright (c) 2000-2003, PostgreSQL Global Development Group
55
*
6-
* $PostgreSQL: pgsql/src/bin/psql/help.c,v 1.83 2003/12/01 22:21:54 momjian Exp $
6+
* $PostgreSQL: pgsql/src/bin/psql/help.c,v 1.84 2003/12/01 22:34:48 momjian Exp $
77
*/
88
#include "postgres_fe.h"
99
#include "common.h"
@@ -246,10 +246,10 @@ slashUsage(unsigned short int pager)
246246

247247
fprintf(output, _("Copy, Large Object\n"));
248248
fprintf(output, _(" \\copy ... perform SQL COPY with data stream to the client host\n"));
249-
fprintf(output, _(" \\lo_export\n"
250-
" \\lo_import\n"
249+
fprintf(output, _(" \\lo_export LOBOID FILE\n"
250+
" \\lo_import FILE [COMMENT] \n"
251251
" \\lo_list\n"
252-
" \\lo_unlink large object operations\n"));
252+
" \\lo_unlink LOBOID large object operations\n"));
253253

254254
if (output != stdout)
255255
{

0 commit comments

Comments
 (0)