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
510860a6
Commit
510860a6
authored
13 years ago
by
Peter Eisentraut
Browse files
Options
Downloads
Patches
Plain Diff
Small cleanups of contrib --help output
parent
9c64f395
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
contrib/pg_archivecleanup/pg_archivecleanup.c
+5
-5
5 additions, 5 deletions
contrib/pg_archivecleanup/pg_archivecleanup.c
contrib/pg_standby/pg_standby.c
+3
-3
3 additions, 3 deletions
contrib/pg_standby/pg_standby.c
contrib/pgbench/pgbench.c
+1
-1
1 addition, 1 deletion
contrib/pgbench/pgbench.c
with
9 additions
and
9 deletions
contrib/pg_archivecleanup/pg_archivecleanup.c
+
5
−
5
View file @
510860a6
...
...
@@ -248,11 +248,11 @@ usage(void)
printf
(
"Usage:
\n
"
);
printf
(
" %s [OPTION]... ARCHIVELOCATION OLDESTKEPTWALFILE
\n
"
,
progname
);
printf
(
"
\n
Options:
\n
"
);
printf
(
" -d
generate
s
debug output (verbose mode)
\n
"
);
printf
(
" -n
show
s
the names of the files that would
have been removed (dry-run)
\n
"
);
printf
(
" -x EXT
cleanup files if they have this
same
extension
\n
"
);
printf
(
" --help
show this help, then exit
\n
"
);
printf
(
" --version
output version information, then exit
\n
"
);
printf
(
" -d generate debug output (verbose mode)
\n
"
);
printf
(
" -n
dry run,
show the names of the files that would
be removed
\n
"
);
printf
(
" -x EXT clean
up files if they have this extension
\n
"
);
printf
(
" --help show this help, then exit
\n
"
);
printf
(
" --version output version information, then exit
\n
"
);
printf
(
"
\n
"
"For use as archive_cleanup_command in recovery.conf when standby_mode = on:
\n
"
" archive_cleanup_command = 'pg_archivecleanup [OPTION]... ARCHIVELOCATION %%r'
\n
"
...
...
This diff is collapsed.
Click to expand it.
contrib/pg_standby/pg_standby.c
+
3
−
3
View file @
510860a6
...
...
@@ -517,16 +517,16 @@ usage(void)
printf
(
"Usage:
\n
"
);
printf
(
" %s [OPTION]... ARCHIVELOCATION NEXTWALFILE XLOGFILEPATH [RESTARTWALFILE]
\n
"
,
progname
);
printf
(
"
\n
Options:
\n
"
);
printf
(
" -c cop
ies
file from archive (default)
\n
"
);
printf
(
" -c cop
y
file from archive (default)
\n
"
);
printf
(
" -d generate lots of debugging output (testing only)
\n
"
);
printf
(
" -k NUMFILESTOKEEP if RESTARTWALFILE not used, remove
s
files prior to limit
\n
"
printf
(
" -k NUMFILESTOKEEP if RESTARTWALFILE
is
not used, remove files prior to limit
\n
"
" (0 keeps all)
\n
"
);
printf
(
" -l does nothing; use of link is now deprecated
\n
"
);
printf
(
" -r MAXRETRIES max number of times to retry, with progressive wait
\n
"
" (default=3)
\n
"
);
printf
(
" -s SLEEPTIME seconds to wait between file checks (min=1, max=60,
\n
"
" default=5)
\n
"
);
printf
(
" -t TRIGGERFILE
defines a
trigger file to initiate failover (no default)
\n
"
);
printf
(
" -t TRIGGERFILE trigger file to initiate failover (no default)
\n
"
);
printf
(
" -w MAXWAITTIME max seconds to wait for a file (0=no limit) (default=0)
\n
"
);
printf
(
" --help show this help, then exit
\n
"
);
printf
(
" --version output version information, then exit
\n
"
);
...
...
This diff is collapsed.
Click to expand it.
contrib/pgbench/pgbench.c
+
1
−
1
View file @
510860a6
...
...
@@ -357,7 +357,7 @@ usage(const char *progname)
" -f FILENAME read transaction script from FILENAME
\n
"
" -j NUM number of threads (default: 1)
\n
"
" -l write transaction times to log file
\n
"
" -M
{
simple|extended|prepared
}
\n
"
" -M simple|extended|prepared
\n
"
" protocol for submitting queries to server (default: simple)
\n
"
" -n do not run VACUUM before tests
\n
"
" -N do not update tables
\"
pgbench_tellers
\"
and
\"
pgbench_branches
\"\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