diff options
author | Daniil Timizhev <ditimizhev@ydb.tech> | 2025-04-15 14:28:04 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-04-15 14:28:04 +0300 |
commit | 301555f22b143e138d38d2a1673aa866eb1b78a1 (patch) | |
tree | b1258ebe86b7f1a35da21f51a78f94f049e2833f | |
parent | b107705db746336382b6ba6a74e16f09d38bb36a (diff) | |
download | ydb-301555f22b143e138d38d2a1673aa866eb1b78a1.tar.gz |
Add target batch_operations to kqp/ut/ya.make (#17203)
-rw-r--r-- | ydb/core/kqp/ut/batch_operations/kqp_batch_update_ut.cpp | 9 | ||||
-rw-r--r-- | ydb/core/kqp/ut/ya.make | 1 |
2 files changed, 7 insertions, 3 deletions
diff --git a/ydb/core/kqp/ut/batch_operations/kqp_batch_update_ut.cpp b/ydb/core/kqp/ut/batch_operations/kqp_batch_update_ut.cpp index ca0b42ce942..520841792a5 100644 --- a/ydb/core/kqp/ut/batch_operations/kqp_batch_update_ut.cpp +++ b/ydb/core/kqp/ut/batch_operations/kqp_batch_update_ut.cpp @@ -301,19 +301,22 @@ Y_UNIT_TEST_SUITE(KqpBatchUpdate) { } Y_UNIT_TEST(Large_1) { - for (size_t size = 1; size <= 1000; size *= 10) { + ui32 sizeLimit = NSan::PlainOrUnderSanitizer(1000, 100); + for (size_t size = 1; size <= sizeLimit; size *= 10) { TestLarge(size, 100); } } Y_UNIT_TEST(Large_2) { - for (size_t size = 100; size <= 10000; size *= 10) { + ui32 sizeLimit = NSan::PlainOrUnderSanitizer(10000, 1000); + for (size_t size = 100; size <= sizeLimit; size *= 10) { TestLarge(size, 10000); } } Y_UNIT_TEST(Large_3) { - for (size_t size = 1000; size <= 100000; size *= 10) { + ui32 sizeLimit = NSan::PlainOrUnderSanitizer(100000, 10000); + for (size_t size = 1000; size <= sizeLimit; size *= 10) { TestLarge(size, 100000); } } diff --git a/ydb/core/kqp/ut/ya.make b/ydb/core/kqp/ut/ya.make index 38757b3dca1..94a7ea3d446 100644 --- a/ydb/core/kqp/ut/ya.make +++ b/ydb/core/kqp/ut/ya.make @@ -1,5 +1,6 @@ RECURSE_FOR_TESTS( arrow + batch_operations cost data data_integrity |