From 0da7943266ef201f7155cd16e393a7f43f3510a2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=9E=D0=BB=D0=B5=D0=B3?= <150132506+iddqdex@users.noreply.github.com> Date: Fri, 11 Oct 2024 15:18:48 +0300 Subject: [PATCH] Temporary not check size of lineitems table for big scales of tpch (#10336) --- ydb/tests/olap/load/test_tpch.py | 6 ------ 1 file changed, 6 deletions(-) diff --git a/ydb/tests/olap/load/test_tpch.py b/ydb/tests/olap/load/test_tpch.py index d8f31e9bf3f8..bbdfc2ec34e8 100644 --- a/ydb/tests/olap/load/test_tpch.py +++ b/ydb/tests/olap/load/test_tpch.py @@ -66,16 +66,10 @@ class TestTpch100(TpchSuiteBase): class TestTpch1000(TpchSuiteBase): - tables_size: dict[str, int] = { - 'lineitem': 5999989709, - } size: int = 1000 timeout = max(TpchSuiteBase.timeout, 1000.) class TestTpch10000(TpchSuiteBase): - tables_size: dict[str, int] = { - 'lineitem': 59999994267, - } size: int = 10000 timeout = max(TpchSuiteBase.timeout, 3600.)