diff options
author | Олег <150132506+iddqdex@users.noreply.github.com> | 2024-11-25 17:04:56 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-11-25 14:04:56 +0000 |
commit | 0e108816a7ef460b91e942a4a6effdc1b5cd5a4c (patch) | |
tree | e84597951a42508a101b27ce519b5955a1509e7b | |
parent | a458b3553b4765d37a41f05ea90857b0cd952ba9 (diff) | |
download | ydb-0e108816a7ef460b91e942a4a6effdc1b5cd5a4c.tar.gz |
Switch on check canonical results for tpch 1k and 10k (#11951)
-rw-r--r-- | ydb/tests/olap/load/test_tpch.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ydb/tests/olap/load/test_tpch.py b/ydb/tests/olap/load/test_tpch.py index 3282dc8361..8beff197d8 100644 --- a/ydb/tests/olap/load/test_tpch.py +++ b/ydb/tests/olap/load/test_tpch.py @@ -75,7 +75,7 @@ class TestTpch1000(TpchSuiteBase): 'lineitem': 5999989709, } scale: int = 1000 - check_canonical: bool = False + check_canonical: bool = True timeout = max(TpchSuiteBase.timeout, 3600.) @@ -85,5 +85,5 @@ class TestTpch10000(TpchSuiteBase): } scale: int = 10000 iterations: int = 2 - check_canonical: bool = False + check_canonical: bool = True timeout = max(TpchSuiteBase.timeout, 3600.) |