Fix instability in contrib/bloom TAP tests.
It turns out that the instability complained of in commit d3c09b9b1 has an embarrassingly simple explanation. The test script waits for the standby to flush incoming WAL to disk, but it should wait for the WAL to be replayed, since we are testing for the effects of that to be visible. While at it, use wait_for_catchup instead of reinventing that logic, and adjust $Test::Builder::Level to improve future error reports. Back-patch to v12 where the necessary infrastructure came in (cf. aforesaid commit). Also back-patch 7d1aa6bf1 so that the test will actually get run. Discussion: https://postgr.es/m/2854602.1632852664@sss.pgh.pa.us
This commit is contained in:
parent
07f8a9e784
commit
6bc6bd47cf
@ -16,12 +16,10 @@ sub test_index_replay
|
|||||||
{
|
{
|
||||||
my ($test_name) = @_;
|
my ($test_name) = @_;
|
||||||
|
|
||||||
|
local $Test::Builder::Level = $Test::Builder::Level + 1;
|
||||||
|
|
||||||
# Wait for standby to catch up
|
# Wait for standby to catch up
|
||||||
my $applname = $node_standby->name;
|
$node_primary->wait_for_catchup($node_standby);
|
||||||
my $caughtup_query =
|
|
||||||
"SELECT pg_current_wal_lsn() <= write_lsn FROM pg_stat_replication WHERE application_name = '$applname';";
|
|
||||||
$node_primary->poll_query_until('postgres', $caughtup_query)
|
|
||||||
or die "Timed out while waiting for standby 1 to catch up";
|
|
||||||
|
|
||||||
my $queries = qq(SET enable_seqscan=off;
|
my $queries = qq(SET enable_seqscan=off;
|
||||||
SET enable_bitmapscan=on;
|
SET enable_bitmapscan=on;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user