Skip to content

Commit

Permalink
dont use cpu for not abortable chunks (ydb-platform#7865)
Browse files Browse the repository at this point in the history
  • Loading branch information
ivanmorozov333 authored and zverevgeny committed Sep 11, 2024
1 parent 4e23312 commit cc8e49b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ TConclusion<std::shared_ptr<arrow::RecordBatch>> 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())) {
Expand Down

0 comments on commit cc8e49b

Please sign in to comment.