From 57a6a64d8c622fc42b2e3cb16a0f9f23783bab46 Mon Sep 17 00:00:00 2001 From: Nikita Taranov Date: Fri, 13 Sep 2024 17:31:28 +0100 Subject: [PATCH] fix --- .../test_parallel_replicas_snapshot_from_initiator/test.py | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/tests/integration/test_parallel_replicas_snapshot_from_initiator/test.py b/tests/integration/test_parallel_replicas_snapshot_from_initiator/test.py index 5da0a57ee7e..ec962c7cb32 100644 --- a/tests/integration/test_parallel_replicas_snapshot_from_initiator/test.py +++ b/tests/integration/test_parallel_replicas_snapshot_from_initiator/test.py @@ -51,10 +51,9 @@ def _create_tables(table_name): ) -def test_number_of_marks_read(start_cluster): - if nodes[0].is_built_with_sanitizer(): - pytest.skip("Disabled for sanitizers (too slow)") - +# check that we use the state of data parts from the initiator node (for some sort of determinism of what is been read). +# currently it is implemented only when we build local plan for the initiator node (we aim to make this behavior default) +def test_initiator_snapshot_is_used_for_reading(start_cluster): table_name = "t" _create_tables(table_name)