summaryrefslogtreecommitdiff
path: root/src/bin
diff options
context:
space:
mode:
authorPeter Eisentraut2026-05-04 10:00:22 +0000
committerPeter Eisentraut2026-05-04 10:00:22 +0000
commitabff4492d0246a3de9053b3cb60a7076c3800dba (patch)
tree09cc5fc404b66678a1777b897ac58d96c52cbf1c /src/bin
parentb83a94a73bc3488119bb2517b0c1406be8a50545 (diff)
Fix options listing of pg_restore --no-globals
The new pg_restore option --no-globals (commit 3c19983cc08) appeared out of order in the documentation and help output. Fix that.
Diffstat (limited to 'src/bin')
-rw-r--r--src/bin/pg_dump/pg_restore.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/pg_dump/pg_restore.c b/src/bin/pg_dump/pg_restore.c
index 95f4ac110b9..48fdcb0fae1 100644
--- a/src/bin/pg_dump/pg_restore.c
+++ b/src/bin/pg_dump/pg_restore.c
@@ -788,13 +788,13 @@ usage(const char *progname)
printf(_(" --no-data do not restore data\n"));
printf(_(" --no-data-for-failed-tables do not restore data of tables that could not be\n"
" created\n"));
+ printf(_(" --no-globals do not restore global objects (roles and tablespaces)\n"));
printf(_(" --no-policies do not restore row security policies\n"));
printf(_(" --no-publications do not restore publications\n"));
printf(_(" --no-schema do not restore schema\n"));
printf(_(" --no-security-labels do not restore security labels\n"));
printf(_(" --no-statistics do not restore statistics\n"));
printf(_(" --no-subscriptions do not restore subscriptions\n"));
- printf(_(" --no-globals do not restore global objects (roles and tablespaces)\n"));
printf(_(" --no-table-access-method do not restore table access methods\n"));
printf(_(" --no-tablespaces do not restore tablespace assignments\n"));
printf(_(" --restrict-key=RESTRICT_KEY use provided string as psql \\restrict key\n"));