Skip to content

Commit a1bc96c

Browse files
ivanmorozov333zverevgeny
authored andcommitted
dont use cpu for not abortable chunks (ydb-platform#7865)
1 parent f6d44ee commit a1bc96c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ydb/core/tx/columnshard/engines/scheme/versions/abstract_scheme.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ TConclusion<std::shared_ptr<arrow::RecordBatch>> ISnapshotSchema::PrepareForModi
117117
switch (mType) {
118118
case NEvWrite::EModificationType::Replace:
119119
case NEvWrite::EModificationType::Upsert: {
120-
AFL_VERIFY(batch->num_columns() <= dstSchema->num_fields());
120+
AFL_VERIFY(batch->num_columns() <= dstSchema->num_fields());
121121
if (batch->num_columns() < dstSchema->num_fields()) {
122122
for (auto&& f : dstSchema->fields()) {
123123
if (GetIndexInfo().IsNullableVerified(f->name())) {

0 commit comments

Comments
 (0)