diff options
author | Олег <150132506+iddqdex@users.noreply.github.com> | 2025-03-31 15:05:05 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-03-31 12:05:05 +0000 |
commit | d91bda6ab4bdd98fb89d634b975de492cf9fe88a (patch) | |
tree | d6ef51c0cccc03a93922167f0780829c4beb699d | |
parent | c0bd9099a5ea52fb7762eb9435b964c6705f9f5a (diff) | |
download | ydb-d91bda6ab4bdd98fb89d634b975de492cf9fe88a.tar.gz |
Add tpch 30k and tpch 100k to tests (#16461)
-rw-r--r-- | ydb/tests/olap/load/lib/tpch.py | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/ydb/tests/olap/load/lib/tpch.py b/ydb/tests/olap/load/lib/tpch.py index 1f767240378..8b64960dc57 100644 --- a/ydb/tests/olap/load/lib/tpch.py +++ b/ydb/tests/olap/load/lib/tpch.py @@ -91,3 +91,17 @@ class TestTpch10000(TpchSuiteBase): iterations: int = 1 check_canonical: bool = CheckCanonicalPolicy.WARNING timeout = max(TpchSuiteBase.timeout, 14400.) + + +class TestTpch30000(TpchSuiteBase): + scale: int = 30000 + iterations: int = 1 + check_canonical: bool = CheckCanonicalPolicy.WARNING + timeout = max(TpchSuiteBase.timeout, 14400.) + + +class TestTpch100000(TpchSuiteBase): + scale: int = 100000 + iterations: int = 1 + check_canonical: bool = CheckCanonicalPolicy.WARNING + timeout = max(TpchSuiteBase.timeout, 14400.) |