Skip to content

Commit d91bda6

Browse files
authored
Add tpch 30k and tpch 100k to tests (#16461)
1 parent c0bd909 commit d91bda6

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

ydb/tests/olap/load/lib/tpch.py

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -91,3 +91,17 @@ class TestTpch10000(TpchSuiteBase):
9191
iterations: int = 1
9292
check_canonical: bool = CheckCanonicalPolicy.WARNING
9393
timeout = max(TpchSuiteBase.timeout, 14400.)
94+
95+
96+
class TestTpch30000(TpchSuiteBase):
97+
scale: int = 30000
98+
iterations: int = 1
99+
check_canonical: bool = CheckCanonicalPolicy.WARNING
100+
timeout = max(TpchSuiteBase.timeout, 14400.)
101+
102+
103+
class TestTpch100000(TpchSuiteBase):
104+
scale: int = 100000
105+
iterations: int = 1
106+
check_canonical: bool = CheckCanonicalPolicy.WARNING
107+
timeout = max(TpchSuiteBase.timeout, 14400.)

0 commit comments

Comments
 (0)