From cc8e49ba205d3d95a88054dccb079e5060a62186 Mon Sep 17 00:00:00 2001 From: ivanmorozov333 Date: Fri, 16 Aug 2024 07:08:28 +0300 Subject: [PATCH] dont use cpu for not abortable chunks (#7865) --- .../tx/columnshard/engines/scheme/versions/abstract_scheme.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ydb/core/tx/columnshard/engines/scheme/versions/abstract_scheme.cpp b/ydb/core/tx/columnshard/engines/scheme/versions/abstract_scheme.cpp index 47a1bd120868..fef5d813af93 100644 --- a/ydb/core/tx/columnshard/engines/scheme/versions/abstract_scheme.cpp +++ b/ydb/core/tx/columnshard/engines/scheme/versions/abstract_scheme.cpp @@ -117,7 +117,7 @@ TConclusion> ISnapshotSchema::PrepareForModi switch (mType) { case NEvWrite::EModificationType::Replace: case NEvWrite::EModificationType::Upsert: { - AFL_VERIFY(batch->num_columns() <= dstSchema->num_fields()); + AFL_VERIFY(batch->num_columns() <= dstSchema->num_fields()); if (batch->num_columns() < dstSchema->num_fields()) { for (auto&& f : dstSchema->fields()) { if (GetIndexInfo().IsNullableVerified(f->name())) {