|
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,
|
@@ -582,7 +583,7 @@ sub wait_until_vacuum_can_remove
|
582 | 583 | /ERROR: cannot copy invalidated replication slot "vacuum_full_inactiveslot"/,
|
583 | 584 | "invalidated slot cannot be copied");
|
584 | 585 |
|
585 |
| -# Turn hot_standby_feedback back on |
| 586 | +# Set hot_standby_feedback to on |
586 | 587 | change_hot_standby_feedback_and_wait_for_xmins(1, 1);
|
587 | 588 |
|
588 | 589 | ##################################################
|
@@ -724,12 +725,12 @@ sub wait_until_vacuum_can_remove
|
724 | 725 |
|
725 | 726 | # message should not be issued
|
726 | 727 | ok( !$node_standby->log_contains(
|
727 |
| - "invalidating obsolete slot \"no_conflict_inactiveslot\"", $logstart), |
| 728 | + "invalidating obsolete replication slot \"no_conflict_inactiveslot\"", $logstart), |
728 | 729 | 'inactiveslot slot invalidation is not logged with vacuum on conflict_test'
|
729 | 730 | );
|
730 | 731 |
|
731 | 732 | ok( !$node_standby->log_contains(
|
732 |
| - "invalidating obsolete slot \"no_conflict_activeslot\"", $logstart), |
| 733 | + "invalidating obsolete replication slot \"no_conflict_activeslot\"", $logstart), |
733 | 734 | 'activeslot slot invalidation is not logged with vacuum on conflict_test'
|
734 | 735 | );
|
735 | 736 |
|
|
0 commit comments