diff options
author | ijon <ijon@yandex-team.com> | 2022-08-22 12:22:06 +0300 |
---|---|---|
committer | ijon <ijon@yandex-team.com> | 2022-08-22 12:22:06 +0300 |
commit | bd26a7289d3b52946bb01aabf50aaa98e8776b24 (patch) | |
tree | 20856db6b7f891643120df53ba4a877304c5f29f | |
parent | 90ba2f22fde909f48fae87f8d00773acc6f793a8 (diff) | |
download | ydb-bd26a7289d3b52946bb01aabf50aaa98e8776b24.tar.gz |
fix darwin build for tests in ydb/core/formats/
fix darwin build for tests in ydb/core/formats/
-rw-r--r-- | ydb/core/formats/ut_arrow.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ydb/core/formats/ut_arrow.cpp b/ydb/core/formats/ut_arrow.cpp index 291300bdd3..68f338b020 100644 --- a/ydb/core/formats/ut_arrow.cpp +++ b/ydb/core/formats/ut_arrow.cpp @@ -427,8 +427,8 @@ std::shared_ptr<arrow::Table> MakeTable1000() { } std::shared_ptr<arrow::Table> Shuffle(std::shared_ptr<arrow::Table> table) { - TVector<ui64> shuffle(1000); - for (ui32 i = 0; i < 1000; ++i) { + std::vector<arrow::UInt64Builder::value_type> shuffle(1000); + for (int i = 0; i < 1000; ++i) { shuffle[i] = i; } ShuffleRange(shuffle); |