diff options
author | ivanmorozov <ivanmorozov@yandex-team.com> | 2023-04-09 08:19:38 +0300 |
---|---|---|
committer | ivanmorozov <ivanmorozov@yandex-team.com> | 2023-04-09 08:19:38 +0300 |
commit | 7c973fcc5aa3d41f1c2fe34e71b7d03a9be5dedc (patch) | |
tree | 49987804022d32e278bcb86bc9f9d84cae9e0956 | |
parent | a4ec43037b59e46bd9229c25e7208887ad67c770 (diff) | |
download | ydb-7c973fcc5aa3d41f1c2fe34e71b7d03a9be5dedc.tar.gz |
fix test
-rw-r--r-- | ydb/services/ext_index/ut/ut_ext_index.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ydb/services/ext_index/ut/ut_ext_index.cpp b/ydb/services/ext_index/ut/ut_ext_index.cpp index d6f0c97b410..6dee7166034 100644 --- a/ydb/services/ext_index/ut/ut_ext_index.cpp +++ b/ydb/services/ext_index/ut/ut_ext_index.cpp @@ -149,7 +149,7 @@ Y_UNIT_TEST_SUITE(ExternalIndex) { calcer.Update((const ui8*)&level, sizeof(level)); calcer.Update((const ui8*)id.data(), id.size()); const ui64 hash = calcer.Finish(); - lHelper.StartDataRequest("SELECT * FROM `/Root/.metadata/cs_index/Root/olapStore/olapTable/ext_index_simple` WHERE index_hash = " + + lHelper.StartDataRequest("SELECT index_hash, pk_timestamp FROM `/Root/.metadata/cs_index/Root/olapStore/olapTable/ext_index_simple` WHERE index_hash = " + ::ToString(hash), true, &resultData); Cerr << resultData << "/" << tsStart << Endl; UNIT_ASSERT_EQUAL(resultData, "[[" + ::ToString(hash) + "u];[" + ::ToString(tsStart + 2) + "u]]"); |