From 30f3be98406c710ddf622c193907df2eb668f1ae Mon Sep 17 00:00:00 2001 From: "Alex Chi Z." <4198311+skyzh@users.noreply.github.com> Date: Wed, 26 Feb 2025 11:19:14 -0600 Subject: [PATCH] fix(test): reduce number of relations in test_tx_abort_with_many_relations (#10997) ## Problem I see a lot of timeout errors, which indicates that this test is too slow. It seems that create relations are fast, but the subsequent truncating step is slow. ## Summary of changes Reduce number of relations for now, and investigate later. Signed-off-by: Alex Chi Z --- test_runner/regress/test_pg_regress.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test_runner/regress/test_pg_regress.py b/test_runner/regress/test_pg_regress.py index afc7ef3e01..6a76ad5ca8 100644 --- a/test_runner/regress/test_pg_regress.py +++ b/test_runner/regress/test_pg_regress.py @@ -364,7 +364,7 @@ def test_tx_abort_with_many_relations( n = 4000 step = 4000 else: - n = 100000 + n = 20000 step = 5000 def create():