Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
3c800ae0
Commit
3c800ae0
authored
May 01, 2020
by
Peter Eisentraut
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Put new command-line options into alphabetical order in help output
parent
78bad97f
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
13 additions
and
13 deletions
+13
-13
src/bin/pg_basebackup/pg_basebackup.c
src/bin/pg_basebackup/pg_basebackup.c
+6
-6
src/bin/pg_rewind/pg_rewind.c
src/bin/pg_rewind/pg_rewind.c
+5
-5
src/bin/pgbench/pgbench.c
src/bin/pgbench/pgbench.c
+1
-1
src/bin/scripts/dropdb.c
src/bin/scripts/dropdb.c
+1
-1
No files found.
src/bin/pg_basebackup/pg_basebackup.c
View file @
3c800ae0
...
...
@@ -404,15 +404,15 @@ usage(void)
printf
(
_
(
" -S, --slot=SLOTNAME replication slot to use
\n
"
));
printf
(
_
(
" -v, --verbose output verbose messages
\n
"
));
printf
(
_
(
" -V, --version output version information, then exit
\n
"
));
printf
(
_
(
" --manifest-checksums=SHA{224,256,384,512}|CRC32C|NONE
\n
"
" use algorithm for manifest checksums
\n
"
));
printf
(
_
(
" --manifest-force-encode
\n
"
" hex encode all file names in manifest
\n
"
));
printf
(
_
(
" --no-estimate-size do not estimate backup size in server side
\n
"
));
printf
(
_
(
" --no-manifest suppress generation of backup manifest
\n
"
));
printf
(
_
(
" --no-slot prevent creation of temporary replication slot
\n
"
));
printf
(
_
(
" --no-verify-checksums
\n
"
" do not verify checksums
\n
"
));
printf
(
_
(
" --no-estimate-size do not estimate backup size in server side
\n
"
));
printf
(
_
(
" --no-manifest suppress generation of backup manifest
\n
"
));
printf
(
_
(
" --manifest-force-encode
\n
"
" hex encode all filenames in manifest
\n
"
));
printf
(
_
(
" --manifest-checksums=SHA{224,256,384,512}|CRC32C|NONE
\n
"
" use algorithm for manifest checksums
\n
"
));
printf
(
_
(
" -?, --help show this help, then exit
\n
"
));
printf
(
_
(
"
\n
Connection options:
\n
"
));
printf
(
_
(
" -d, --dbname=CONNSTR connection string
\n
"
));
...
...
src/bin/pg_rewind/pg_rewind.c
View file @
3c800ae0
...
...
@@ -78,19 +78,19 @@ usage(const char *progname)
printf
(
_
(
"%s resynchronizes a PostgreSQL cluster with another copy of the cluster.
\n\n
"
),
progname
);
printf
(
_
(
"Usage:
\n
%s [OPTION]...
\n\n
"
),
progname
);
printf
(
_
(
"Options:
\n
"
));
printf
(
_
(
" -c, --restore-target-wal use restore_command in target config
\n
"
"
to
retrieve WAL files from archives
\n
"
));
printf
(
_
(
" -c, --restore-target-wal use restore_command in target config
uration to
\n
"
" retrieve WAL files from archives
\n
"
));
printf
(
_
(
" -D, --target-pgdata=DIRECTORY existing data directory to modify
\n
"
));
printf
(
_
(
" --source-pgdata=DIRECTORY source data directory to synchronize with
\n
"
));
printf
(
_
(
" --source-server=CONNSTR source server to synchronize with
\n
"
));
printf
(
_
(
" -R, --write-recovery-conf write configuration for replication
\n
"
" (requires --source-server)
\n
"
));
printf
(
_
(
" -n, --dry-run stop before modifying anything
\n
"
));
printf
(
_
(
" -N, --no-sync do not wait for changes to be written
\n
"
" safely to disk
\n
"
));
printf
(
_
(
" -P, --progress write progress messages
\n
"
));
printf
(
_
(
" --no-ensure-shutdown do not automatically fix unclean shutdown
\n
"
));
printf
(
_
(
" -R, --write-recovery-conf write configuration for replication
\n
"
" (requires --source-server)
\n
"
));
printf
(
_
(
" --debug write a lot of debug messages
\n
"
));
printf
(
_
(
" --no-ensure-shutdown do not automatically fix unclean shutdown
\n
"
));
printf
(
_
(
" -V, --version output version information, then exit
\n
"
));
printf
(
_
(
" -?, --help show this help, then exit
\n
"
));
printf
(
_
(
"
\n
Report bugs to <%s>.
\n
"
),
PACKAGE_BUGREPORT
);
...
...
src/bin/pgbench/pgbench.c
View file @
3c800ae0
...
...
@@ -638,9 +638,9 @@ usage(void)
" --foreign-keys create foreign key constraints between tables
\n
"
" --index-tablespace=TABLESPACE
\n
"
" create indexes in the specified tablespace
\n
"
" --partitions=NUM partition pgbench_accounts in NUM parts (default: 0)
\n
"
" --partition-method=(range|hash)
\n
"
" partition pgbench_accounts with this method (default: range)
\n
"
" --partitions=NUM partition pgbench_accounts into NUM parts (default: 0)
\n
"
" --tablespace=TABLESPACE create tables in the specified tablespace
\n
"
" --unlogged-tables create tables as unlogged tables
\n
"
"
\n
Options to select what to run:
\n
"
...
...
src/bin/scripts/dropdb.c
View file @
3c800ae0
...
...
@@ -165,8 +165,8 @@ help(const char *progname)
printf
(
_
(
" %s [OPTION]... DBNAME
\n
"
),
progname
);
printf
(
_
(
"
\n
Options:
\n
"
));
printf
(
_
(
" -e, --echo show the commands being sent to the server
\n
"
));
printf
(
_
(
" -i, --interactive prompt before deleting anything
\n
"
));
printf
(
_
(
" -f, --force try to terminate other connections before dropping
\n
"
));
printf
(
_
(
" -i, --interactive prompt before deleting anything
\n
"
));
printf
(
_
(
" -V, --version output version information, then exit
\n
"
));
printf
(
_
(
" --if-exists don't report error if database doesn't exist
\n
"
));
printf
(
_
(
" -?, --help show this help, then exit
\n
"
));
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment