|
8 | 8 |
|
9 | 9 | use PostgreSQL::Test::Cluster;
|
10 | 10 | use PostgreSQL::Test::Utils;
|
| 11 | +use Time::HiRes qw(usleep); |
11 | 12 | use Test::More;
|
12 | 13 |
|
13 | 14 | my ($stdin, $stdout, $stderr,
|
@@ -577,7 +578,7 @@ sub wait_until_vacuum_can_remove
|
577 | 578 | /ERROR: cannot copy invalidated replication slot "vacuum_full_inactiveslot"/,
|
578 | 579 | "invalidated slot cannot be copied");
|
579 | 580 |
|
580 |
| -# Turn hot_standby_feedback back on |
| 581 | +# Set hot_standby_feedback to on |
581 | 582 | change_hot_standby_feedback_and_wait_for_xmins(1, 1);
|
582 | 583 |
|
583 | 584 | ##################################################
|
@@ -720,12 +721,12 @@ sub wait_until_vacuum_can_remove
|
720 | 721 |
|
721 | 722 | # message should not be issued
|
722 | 723 | ok( !$node_standby->log_contains(
|
723 |
| - "invalidating obsolete slot \"no_conflict_inactiveslot\"", $logstart), |
| 724 | + "invalidating obsolete replication slot \"no_conflict_inactiveslot\"", $logstart), |
724 | 725 | 'inactiveslot slot invalidation is not logged with vacuum on conflict_test'
|
725 | 726 | );
|
726 | 727 |
|
727 | 728 | ok( !$node_standby->log_contains(
|
728 |
| - "invalidating obsolete slot \"no_conflict_activeslot\"", $logstart), |
| 729 | + "invalidating obsolete replication slot \"no_conflict_activeslot\"", $logstart), |
729 | 730 | 'activeslot slot invalidation is not logged with vacuum on conflict_test'
|
730 | 731 | );
|
731 | 732 |
|
|
0 commit comments