Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
postgres-lambda-diff
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jakob Huber
postgres-lambda-diff
Commits
7da0f5d7
Commit
7da0f5d7
authored
24 years ago
by
Bruce Momjian
Browse files
Options
Downloads
Patches
Plain Diff
More psql help cleanup
parent
8101d0c5
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/bin/psql/help.c
+3
-3
3 additions, 3 deletions
src/bin/psql/help.c
with
3 additions
and
3 deletions
src/bin/psql/help.c
+
3
−
3
View file @
7da0f5d7
...
@@ -3,7 +3,7 @@
...
@@ -3,7 +3,7 @@
*
*
* Copyright 2000 by PostgreSQL Global Development Group
* Copyright 2000 by PostgreSQL Global Development Group
*
*
* $Header: /cvsroot/pgsql/src/bin/psql/help.c,v 1.2
8
2000/05/11
01:37:54
momjian Exp $
* $Header: /cvsroot/pgsql/src/bin/psql/help.c,v 1.2
9
2000/05/11
18:41:00
momjian Exp $
*/
*/
#include
"postgres.h"
#include
"postgres.h"
#include
"help.h"
#include
"help.h"
...
@@ -117,7 +117,7 @@ usage(void)
...
@@ -117,7 +117,7 @@ usage(void)
puts
(
" -R <string> Set record separator (default: newline) (-P recordsep=)"
);
puts
(
" -R <string> Set record separator (default: newline) (-P recordsep=)"
);
puts
(
" -s Single step mode (confirm each query)"
);
puts
(
" -s Single step mode (confirm each query)"
);
puts
(
" -S Single line mode (newline terminates query)"
);
puts
(
" -S Single line mode (newline terminates query)"
);
puts
(
" -t
Don't print headings and row count
(-P tuples_only)"
);
puts
(
" -t
Print rows only
(-P tuples_only)"
);
puts
(
" -T text Set HTML table tag options (width, border) (-P tableattr=)"
);
puts
(
" -T text Set HTML table tag options (width, border) (-P tableattr=)"
);
/* Display default user */
/* Display default user */
...
@@ -232,7 +232,7 @@ slashUsage(void)
...
@@ -232,7 +232,7 @@ slashUsage(void)
fprintf
(
fout
,
"
\\
r reset (clear) the query buffer
\n
"
);
fprintf
(
fout
,
"
\\
r reset (clear) the query buffer
\n
"
);
fprintf
(
fout
,
"
\\
s [file] print history or save it in [file]
\n
"
);
fprintf
(
fout
,
"
\\
s [file] print history or save it in [file]
\n
"
);
fprintf
(
fout
,
"
\\
set <var> <value> set internal variable
\n
"
);
fprintf
(
fout
,
"
\\
set <var> <value> set internal variable
\n
"
);
fprintf
(
fout
,
"
\\
t
don't show table headers or footer
s (currently %s)
\n
"
,
ON
(
pset
.
popt
.
topt
.
tuples_only
));
fprintf
(
fout
,
"
\\
t
show only row
s (currently %s)
\n
"
,
ON
(
pset
.
popt
.
topt
.
tuples_only
));
fprintf
(
fout
,
"
\\
T <tags> HTML table tags
\n
"
);
fprintf
(
fout
,
"
\\
T <tags> HTML table tags
\n
"
);
fprintf
(
fout
,
"
\\
unset <var> unset (delete) internal variable
\n
"
);
fprintf
(
fout
,
"
\\
unset <var> unset (delete) internal variable
\n
"
);
fprintf
(
fout
,
"
\\
w <file> write current query buffer to a <file>
\n
"
);
fprintf
(
fout
,
"
\\
w <file> write current query buffer to a <file>
\n
"
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment