Skip to content

Commit

Permalink
disable validation for useless columns (ydb-platform#10240)
Browse files Browse the repository at this point in the history
  • Loading branch information
ivanmorozov333 authored and zverevgeny committed Jan 5, 2025
1 parent 499556c commit a1ac501
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -361,7 +361,7 @@ class TPortionDataSource: public IDataSource {
selectedInMem.emplace(i);
}
}
result = Portion->GetMinMemoryForReadColumns(selectedSeq) + Portion->GetColumnBlobBytes(selectedSeq) +
result = Portion->GetMinMemoryForReadColumns(selectedSeq) + Portion->GetColumnBlobBytes(selectedSeq, false) +
Portion->GetColumnRawBytes(selectedInMem, false);
} else {
result = Portion->GetColumnRawBytes(columnsIds, false);
Expand Down

0 comments on commit a1ac501

Please sign in to comment.