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
73aae452
Commit
73aae452
authored
Dec 12, 2020
by
Noah Misch
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Correct behavior descriptions in comments, and correct a test name.
parent
d6abfdf8
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
4 deletions
+4
-4
src/backend/replication/logical/worker.c
src/backend/replication/logical/worker.c
+1
-1
src/backend/replication/walreceiver.c
src/backend/replication/walreceiver.c
+1
-1
src/test/perl/PostgresNode.pm
src/test/perl/PostgresNode.pm
+1
-1
src/test/recovery/t/020_archive_status.pl
src/test/recovery/t/020_archive_status.pl
+1
-1
No files found.
src/backend/replication/logical/worker.c
View file @
73aae452
...
...
@@ -2252,7 +2252,7 @@ LogicalRepApplyLoop(XLogRecPtr last_received)
bool
requestReply
=
false
;
/*
* Check if time since last receive from
standb
y has reached the
* Check if time since last receive from
primar
y has reached the
* configured limit.
*/
if
(
wal_receiver_timeout
>
0
)
...
...
src/backend/replication/walreceiver.c
View file @
73aae452
...
...
@@ -537,7 +537,7 @@ WalReceiverMain(void)
bool
requestReply
=
false
;
/*
* Check if time since last receive from
standb
y has
* Check if time since last receive from
primar
y has
* reached the configured limit.
*/
if
(
wal_receiver_timeout
>
0
)
...
...
src/test/perl/PostgresNode.pm
View file @
73aae452
...
...
@@ -1368,7 +1368,7 @@ both B<stdout> and B<stderr> the results may be interleaved unpredictably.
=item on_error_stop => 1
By default, the B<psql> method invokes the B<psql> program with ON_ERROR_STOP=1
set, so SQL execution is stopped at the first error and exit code
2
is
set, so SQL execution is stopped at the first error and exit code
3
is
returned. Set B<on_error_stop> to 0 to ignore errors instead.
=item on_error_die => 0
...
...
src/test/recovery/t/020_archive_status.pl
View file @
73aae452
...
...
@@ -145,7 +145,7 @@ $standby1->start;
# that all segments needed are restored from the archives.
$standby1
->
poll_query_until
('
postgres
',
qq{ SELECT pg_wal_lsn_diff(pg_last_wal_replay_lsn(), '$primary_lsn') >= 0 }
)
or
die
"
Timed out while waiting for xlog replay on standby
2
";
)
or
die
"
Timed out while waiting for xlog replay on standby
1
";
$standby1
->
safe_psql
('
postgres
',
q{CHECKPOINT}
);
...
...
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