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
b5e384e3
Commit
b5e384e3
authored
Apr 16, 2015
by
Heikki Linnakangas
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add missing newlines to error messages.
parent
b5e560c2
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
src/bin/pg_rewind/copy_fetch.c
src/bin/pg_rewind/copy_fetch.c
+1
-1
src/bin/pg_rewind/parsexlog.c
src/bin/pg_rewind/parsexlog.c
+3
-3
No files found.
src/bin/pg_rewind/copy_fetch.c
View file @
b5e384e3
...
...
@@ -87,7 +87,7 @@ recurse_dir(const char *datadir, const char *parentpath,
*/
}
else
pg_fatal
(
"could not stat file
\"
%s
\"
: %s"
,
pg_fatal
(
"could not stat file
\"
%s
\"
: %s
\n
"
,
fullpath
,
strerror
(
errno
));
}
...
...
src/bin/pg_rewind/parsexlog.c
View file @
b5e384e3
...
...
@@ -71,7 +71,7 @@ extractPageMap(const char *datadir, XLogRecPtr startpoint, TimeLineID tli,
private
.
tli
=
tli
;
xlogreader
=
XLogReaderAllocate
(
&
SimpleXLogPageRead
,
&
private
);
if
(
xlogreader
==
NULL
)
pg_fatal
(
"out of memory"
);
pg_fatal
(
"out of memory
\n
"
);
do
{
...
...
@@ -124,7 +124,7 @@ readOneRecord(const char *datadir, XLogRecPtr ptr, TimeLineID tli)
private
.
tli
=
tli
;
xlogreader
=
XLogReaderAllocate
(
&
SimpleXLogPageRead
,
&
private
);
if
(
xlogreader
==
NULL
)
pg_fatal
(
"out of memory"
);
pg_fatal
(
"out of memory
\n
"
);
record
=
XLogReadRecord
(
xlogreader
,
ptr
,
&
errormsg
);
if
(
record
==
NULL
)
...
...
@@ -176,7 +176,7 @@ findLastCheckpoint(const char *datadir, XLogRecPtr forkptr, TimeLineID tli,
private
.
tli
=
tli
;
xlogreader
=
XLogReaderAllocate
(
&
SimpleXLogPageRead
,
&
private
);
if
(
xlogreader
==
NULL
)
pg_fatal
(
"out of memory"
);
pg_fatal
(
"out of memory
\n
"
);
searchptr
=
forkptr
;
for
(;;)
...
...
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