aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoruzhas <uzhas@ydb.tech>2023-03-08 10:48:25 +0300
committeruzhas <uzhas@ydb.tech>2023-03-08 10:48:25 +0300
commitf66e47cd2b45c5afb5307447837ec9b2dae1cbe6 (patch)
treefdd858ddb45c2f86b8f8828da6d0e801cf2f315c
parent242a9ac0056883cc899c7fb56c27eb44cf23d96f (diff)
downloadydb-f66e47cd2b45c5afb5307447837ec9b2dae1cbe6.tar.gz
fix test crash
-rw-r--r--ydb/library/yql/minikql/comp_nodes/ut/mkql_grace_join_ut.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/ydb/library/yql/minikql/comp_nodes/ut/mkql_grace_join_ut.cpp b/ydb/library/yql/minikql/comp_nodes/ut/mkql_grace_join_ut.cpp
index 3a7133313b..8ad3b86c16 100644
--- a/ydb/library/yql/minikql/comp_nodes/ut/mkql_grace_join_ut.cpp
+++ b/ydb/library/yql/minikql/comp_nodes/ut/mkql_grace_join_ut.cpp
@@ -25,7 +25,7 @@ constexpr bool IsVerbose = false;
Y_UNIT_TEST_SUITE(TMiniKQLGraceJoinMemTest) {
Y_UNIT_TEST(TestMem1) {
-
+ TSetup<false> setup;
const ui64 TupleSize = 1024;
const ui64 NBuckets = 128;
const ui64 NTuples = 10000;
@@ -170,7 +170,7 @@ Y_UNIT_TEST_SUITE(TMiniKQLGraceJoinMemTest) {
Y_UNIT_TEST_SUITE(TMiniKQLGraceJoinImpTest) {
Y_UNIT_TEST_LLVM(TestImp1) {
-
+ TSetup<LLVM> setup;
ui64 tuple[11] = {0,1,2,3,4,5,6,7,8,9,10};
ui32 strSizes[2] = {4, 4};
char * strVals[] = {(char *)"aaaaa", (char *)"bbbb"};