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
26b45dc5
Commit
26b45dc5
authored
12 years ago
by
Heikki Linnakangas
Browse files
Options
Downloads
Patches
Plain Diff
Fix typo in "pg_xlogdump --help" and error message.
Fujii Masao and me.
parent
3a9e64aa
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
contrib/pg_xlogdump/pg_xlogdump.c
+2
-2
2 additions, 2 deletions
contrib/pg_xlogdump/pg_xlogdump.c
with
2 additions
and
2 deletions
contrib/pg_xlogdump/pg_xlogdump.c
+
2
−
2
View file @
26b45dc5
...
@@ -393,7 +393,7 @@ usage(void)
...
@@ -393,7 +393,7 @@ usage(void)
printf
(
" (default: ./pg_xlog)
\n
"
);
printf
(
" (default: ./pg_xlog)
\n
"
);
printf
(
" -r, --rmgr=RMGR only show records generated by resource manager RMGR
\n
"
);
printf
(
" -r, --rmgr=RMGR only show records generated by resource manager RMGR
\n
"
);
printf
(
" use --rmgr=list to list valid resource manager names
\n
"
);
printf
(
" use --rmgr=list to list valid resource manager names
\n
"
);
printf
(
" -s, --start=RECPTR st
op
reading at log position RECPTR
\n
"
);
printf
(
" -s, --start=RECPTR st
art
reading at log position RECPTR
\n
"
);
printf
(
" -t, --timeline=TLI timeline from which to read log records
\n
"
);
printf
(
" -t, --timeline=TLI timeline from which to read log records
\n
"
);
printf
(
" (default: 1 or the value used in STARTSEG)
\n
"
);
printf
(
" (default: 1 or the value used in STARTSEG)
\n
"
);
printf
(
" -x, --xid=XID only show records with TransactionId XID
\n
"
);
printf
(
" -x, --xid=XID only show records with TransactionId XID
\n
"
);
...
@@ -512,7 +512,7 @@ main(int argc, char **argv)
...
@@ -512,7 +512,7 @@ main(int argc, char **argv)
case
's'
:
case
's'
:
if
(
sscanf
(
optarg
,
"%X/%X"
,
&
xlogid
,
&
xrecoff
)
!=
2
)
if
(
sscanf
(
optarg
,
"%X/%X"
,
&
xlogid
,
&
xrecoff
)
!=
2
)
{
{
fprintf
(
stderr
,
"%s: could not parse
end
log position
\"
%s
\"\n
"
,
fprintf
(
stderr
,
"%s: could not parse
start
log position
\"
%s
\"\n
"
,
progname
,
optarg
);
progname
,
optarg
);
goto
bad_argument
;
goto
bad_argument
;
}
}
...
...
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