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

Commit b7ebebe

Browse files
committed
Move psql \? Formatting above Large Object/Copy.
1 parent c4a7e5d commit b7ebebe

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

src/bin/psql/help.c

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
*
44
* Copyright 2000 by PostgreSQL Global Development Group
55
*
6-
* $Header: /cvsroot/pgsql/src/bin/psql/help.c,v 1.65 2002/12/11 23:03:45 momjian Exp $
6+
* $Header: /cvsroot/pgsql/src/bin/psql/help.c,v 1.66 2002/12/11 23:07:06 momjian Exp $
77
*/
88
#include "postgres_fe.h"
99
#include "common.h"
@@ -218,14 +218,6 @@ slashUsage(unsigned short int pager)
218218
fprintf(output, _(" \\z [PATTERN] list table access privileges (same as \\dp)\n"));
219219
fprintf(output, _("\n"));
220220

221-
fprintf(output, _("Large Object, Copy\n"));
222-
fprintf(output, _(" \\lo_export\n"));
223-
fprintf(output, _(" \\lo_import\n"));
224-
fprintf(output, _(" \\lo_list\n"));
225-
fprintf(output, _(" \\lo_unlink large object operations\n"));
226-
fprintf(output, _(" \\copy ... perform SQL COPY with data stream to the client host\n"));
227-
fprintf(output, _("\n"));
228-
229221
fprintf(output, _("Formatting\n"));
230222
fprintf(output, _(" \\x toggle expanded output (currently %s)\n"),
231223
ON(pset.popt.topt.expanded));
@@ -244,6 +236,14 @@ slashUsage(unsigned short int pager)
244236
fprintf(output, _(" \\T [STRING] set HTML <table> tag attributes, or unset if none\n"));
245237
fprintf(output, _("\n"));
246238

239+
fprintf(output, _("Large Object, Copy\n"));
240+
fprintf(output, _(" \\lo_export\n"));
241+
fprintf(output, _(" \\lo_import\n"));
242+
fprintf(output, _(" \\lo_list\n"));
243+
fprintf(output, _(" \\lo_unlink large object operations\n"));
244+
fprintf(output, _(" \\copy ... perform SQL COPY with data stream to the client host\n"));
245+
fprintf(output, _("\n"));
246+
247247
if (output != stdout)
248248
{
249249
pclose(output);

0 commit comments

Comments
 (0)