v32-0008-Support-2PC-consistent-snapshot-isolation-tests.patch
application/octet-stream
Filename: v32-0008-Support-2PC-consistent-snapshot-isolation-tests.patch
Type: application/octet-stream
Part: 7
Patch
Format: format-patch
Series: patch v32-0008
Subject: Support 2PC consistent snapshot isolation tests
| File | + | − |
|---|---|---|
| contrib/test_decoding/Makefile | 1 | 1 |
From 5ab6a40149965bfba83861e4e1a65e9b62f98c05 Mon Sep 17 00:00:00 2001 From: Amit Kapila <akapila@postgresql.org> Date: Thu, 17 Dec 2020 17:30:21 +0530 Subject: [PATCH v32 8/9] Support 2PC consistent snapshot isolation tests Added isolation test-case to test that if a consistent snapshot is created between a PREPARE and a COMMIT PREPARED, then the whole transaction is decoded on COMMIT PREPARED. --- contrib/test_decoding/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/test_decoding/Makefile b/contrib/test_decoding/Makefile index 76d4a69..380b716 100644 --- a/contrib/test_decoding/Makefile +++ b/contrib/test_decoding/Makefile @@ -7,7 +7,7 @@ REGRESS = ddl xact rewrite toast permissions decoding_in_xact \ decoding_into_rel binary prepared replorigin time messages \ spill slot truncate stream stats twophase twophase_stream ISOLATION = mxact delayed_startup ondisk_startup concurrent_ddl_dml \ - oldest_xmin snapshot_transfer subxact_without_top concurrent_stream + oldest_xmin snapshot_transfer subxact_without_top concurrent_stream twophase_snapshot REGRESS_OPTS = --temp-config $(top_srcdir)/contrib/test_decoding/logical.conf ISOLATION_OPTS = --temp-config $(top_srcdir)/contrib/test_decoding/logical.conf -- 1.8.3.1