Skip to content

Commit

Permalink
disable validation for useless columns (#10240)
Browse files Browse the repository at this point in the history
  • Loading branch information
ivanmorozov333 authored Oct 9, 2024
1 parent 36f2bde commit 528a81b
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 528a81b

Please sign in to comment.