We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ebdd932 commit 6b41f51Copy full SHA for 6b41f51
ydb/core/tx/columnshard/engines/portions/data_accessor.h
@@ -20,7 +20,7 @@ class TPortionDataAccessor {
20
std::optional<std::vector<TIndexChunk>> Indexes;
21
22
template <class TChunkInfo>
23
- static void CheckChunksOrder(const std::vector<TChunkInfo>& chunks) {
+ static bool CheckChunksOrder(const std::vector<TChunkInfo>& chunks) {
24
ui32 entityId = 0;
25
ui32 chunkIdx = 0;
26
for (auto&& i : chunks) {
@@ -30,7 +30,7 @@ class TPortionDataAccessor {
30
entityId = i.GetEntityId();
31
chunkIdx = 0;
32
} else {
33
- AFL_VERIFY(i.GetChunkIdx() == chunkIdx + 1);
+ AFL_VERIFY(i.GetChunkIdx() == chunkIdx + 1)("chunk", i.GetChunkIdx())("idx", chunkIdx);
34
chunkIdx = i.GetChunkIdx();
35
}
36
0 commit comments