From 6887352d5fd7496a567b1e6deee1cef4da378a04 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: Thu, 7 Nov 2024 18:26:23 +0300 Subject: [PATCH] Temporary switch off canonization for tpch 1k+ (#11385) --- ydb/tests/olap/load/test_tpch.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ydb/tests/olap/load/test_tpch.py b/ydb/tests/olap/load/test_tpch.py index 58a5dcef286a..13b6d38197ae 100644 --- a/ydb/tests/olap/load/test_tpch.py +++ b/ydb/tests/olap/load/test_tpch.py @@ -72,7 +72,7 @@ class TestTpch100(TpchSuiteBase): class TestTpch1000(TpchSuiteBase): scale: int = 1000 - check_canonical: bool = True + check_canonical: bool = False timeout = max(TpchSuiteBase.timeout, 1000.) query_settings = { 9: LoadSuiteBase.QuerySettings(timeout=max(TpchSuiteBase.timeout, 3600.)), @@ -81,5 +81,5 @@ class TestTpch1000(TpchSuiteBase): class TestTpch10000(TpchSuiteBase): scale: int = 10000 - check_canonical: bool = True + check_canonical: bool = False timeout = max(TpchSuiteBase.timeout, 3600.)