@@ -1128,24 +1128,29 @@ static void
1128
1128
usage (void )
1129
1129
{
1130
1130
printf (_ ("%s resets the PostgreSQL write-ahead log.\n\n" ), progname );
1131
- printf (_ ("Usage:\n %s [OPTION]... DATADIR\n\n" ), progname );
1132
- printf (_ ("Options:\n" ));
1131
+ printf (_ ("Usage:\n" ));
1132
+ printf (_ (" %s [OPTION]... DATADIR\n" ), progname );
1133
+
1134
+ printf (_ ("\nOptions:\n" ));
1135
+ printf (_ (" [-D, --pgdata=]DATADIR data directory\n" ));
1136
+ printf (_ (" -f, --force force update to be done\n" ));
1137
+ printf (_ (" -n, --dry-run no update, just show what would be done\n" ));
1138
+ printf (_ (" -V, --version output version information, then exit\n" ));
1139
+ printf (_ (" -?, --help show this help, then exit\n" ));
1140
+
1141
+ printf (_ ("\nOptions to override control file values:\n" ));
1133
1142
printf (_ (" -c, --commit-timestamp-ids=XID,XID\n"
1134
1143
" set oldest and newest transactions bearing\n"
1135
1144
" commit timestamp (zero means no change)\n" ));
1136
- printf (_ (" [-D, --pgdata=]DATADIR data directory\n" ));
1137
1145
printf (_ (" -e, --epoch=XIDEPOCH set next transaction ID epoch\n" ));
1138
- printf (_ (" -f, --force force update to be done\n" ));
1139
1146
printf (_ (" -l, --next-wal-file=WALFILE set minimum starting location for new WAL\n" ));
1140
1147
printf (_ (" -m, --multixact-ids=MXID,MXID set next and oldest multitransaction ID\n" ));
1141
- printf (_ (" -n, --dry-run no update, just show what would be done\n" ));
1142
1148
printf (_ (" -o, --next-oid=OID set next OID\n" ));
1143
1149
printf (_ (" -O, --multixact-offset=OFFSET set next multitransaction offset\n" ));
1144
1150
printf (_ (" -u, --oldest-transaction-id=XID set oldest transaction ID\n" ));
1145
- printf (_ (" -V, --version output version information, then exit\n" ));
1146
1151
printf (_ (" -x, --next-transaction-id=XID set next transaction ID\n" ));
1147
1152
printf (_ (" --wal-segsize=SIZE size of WAL segments, in megabytes\n" ));
1148
- printf ( _ ( " -?, --help show this help, then exit\n" ));
1153
+
1149
1154
printf (_ ("\nReport bugs to <%s>.\n" ), PACKAGE_BUGREPORT );
1150
1155
printf (_ ("%s home page: <%s>\n" ), PACKAGE_NAME , PACKAGE_URL );
1151
1156
}
0 commit comments