aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorHeikki Linnakangas <heikki.linnakangas@iki.fi>2024-12-16 15:56:38 +0200
committerHeikki Linnakangas <heikki.linnakangas@iki.fi>2024-12-16 15:59:21 +0200
commit1dfeb6af7f87d5117389870765c210bf6b6b8ed1 (patch)
tree2666e0727d92d58670724fb5ec43ce9d9752dcbd /src
parent39240bcad56dc51a7896d04a1e066efcf988b58f (diff)
downloadpostgresql-1dfeb6af7f87d5117389870765c210bf6b6b8ed1.tar.gz
postgresql-1dfeb6af7f87d5117389870765c210bf6b6b8ed1.zip
Make 009_twophase.pl test pass with recovery_min_apply_delay set
The test failed if you ran the regression tests with TEMP_CONFIG with recovery_min_apply_delay = '500ms'. Fix the race condition by waiting for transaction to be applied in the replica, like in a few other tests. The failing test was introduced in commit cbfbda7841. Backpatch to all supported versions like that commit (except v12, which is no longer supported). Reported-by: Alexander Lakhin Discussion: https://www.postgresql.org/message-id/09e2a70a-a6c2-4b5c-aeae-040a7449c9f2@gmail.com
Diffstat (limited to 'src')
-rw-r--r--src/test/recovery/t/009_twophase.pl1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/test/recovery/t/009_twophase.pl b/src/test/recovery/t/009_twophase.pl
index 12c2f0e40d1..4b3e0f77dc0 100644
--- a/src/test/recovery/t/009_twophase.pl
+++ b/src/test/recovery/t/009_twophase.pl
@@ -319,6 +319,7 @@ $cur_primary->psql('postgres', "COMMIT PREPARED 'xact_009_12'");
$cur_primary->psql(
'postgres', "
+ SET synchronous_commit='remote_apply'; -- To ensure the standby is caught up
CREATE TABLE t_009_tbl_standby_mvcc (id int, msg text);
BEGIN;
INSERT INTO t_009_tbl_standby_mvcc VALUES (1, 'issued to ${cur_primary_name}');