|
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 | if ($ENV{enable_injection_points} ne 'yes')
|
@@ -623,7 +624,7 @@ sub wait_until_vacuum_can_remove
|
623 | 624 | /ERROR: cannot copy invalidated replication slot "vacuum_full_inactiveslot"/,
|
624 | 625 | "invalidated slot cannot be copied");
|
625 | 626 |
|
626 |
| -# Turn hot_standby_feedback back on |
| 627 | +# Set hot_standby_feedback to on |
627 | 628 | change_hot_standby_feedback_and_wait_for_xmins(1, 1);
|
628 | 629 |
|
629 | 630 | ##################################################
|
@@ -754,12 +755,12 @@ sub wait_until_vacuum_can_remove
|
754 | 755 |
|
755 | 756 | # message should not be issued
|
756 | 757 | ok( !$node_standby->log_contains(
|
757 |
| - "invalidating obsolete slot \"no_conflict_inactiveslot\"", $logstart), |
| 758 | + "invalidating obsolete replication slot \"no_conflict_inactiveslot\"", $logstart), |
758 | 759 | 'inactiveslot slot invalidation is not logged with vacuum on conflict_test'
|
759 | 760 | );
|
760 | 761 |
|
761 | 762 | ok( !$node_standby->log_contains(
|
762 |
| - "invalidating obsolete slot \"no_conflict_activeslot\"", $logstart), |
| 763 | + "invalidating obsolete replication slot \"no_conflict_activeslot\"", $logstart), |
763 | 764 | 'activeslot slot invalidation is not logged with vacuum on conflict_test'
|
764 | 765 | );
|
765 | 766 |
|
|
0 commit comments