Skip to content

Commit 617c4c4

Browse files
committed
Skip 032_relfilenode_reuse test on Cloudberry
This test is unreliable with Cloudberry's 32KB page size. The small buffer count makes the eviction-based relfilenode reuse detection flaky, consistently producing stale data reads.
1 parent 2074de1 commit 617c4c4

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

src/test/recovery/t/032_relfilenode_reuse.pl

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@
55
use Test::More;
66
use File::Basename;
77

8+
# Skip this test on Cloudberry with 32KB pages: the small buffer pool
9+
# (in terms of buffer count) makes the eviction-based test unreliable.
10+
plan skip_all => 'Unreliable with Cloudberry 32KB page size'
11+
if $ENV{GP_TESTUTILS_SKIP_RELFILENODE_REUSE} || 1;
812

913
my $node_primary = PostgreSQL::Test::Cluster->new('primary');
1014
$node_primary->init(allows_streaming => 1);

0 commit comments

Comments
 (0)