We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parent3a9e64a commit26b45dcCopy full SHA for 26b45dc
contrib/pg_xlogdump/pg_xlogdump.c
@@ -393,7 +393,7 @@ usage(void)
393
printf(" (default: ./pg_xlog)\n");
394
printf(" -r, --rmgr=RMGR only show records generated by resource manager RMGR\n");
395
printf(" use --rmgr=list to list valid resource manager names\n");
396
-printf(" -s, --start=RECPTRstop reading at log position RECPTR\n");
+printf(" -s, --start=RECPTRstart reading at log position RECPTR\n");
397
printf(" -t, --timeline=TLI timeline from which to read log records\n");
398
printf(" (default: 1 or the value used in STARTSEG)\n");
399
printf(" -x, --xid=XID only show records with TransactionId XID\n");
@@ -512,7 +512,7 @@ main(int argc, char **argv)
512
case's':
513
if (sscanf(optarg,"%X/%X",&xlogid,&xrecoff)!=2)
514
{
515
-fprintf(stderr,"%s: could not parseend log position \"%s\"\n",
+fprintf(stderr,"%s: could not parsestart log position \"%s\"\n",
516
progname,optarg);
517
gotobad_argument;
518
}