Commit f936bfa 1 parent 0d90de6 commit f936bfa Copy full SHA for f936bfa
File tree 1 file changed +14
-0
lines changed
velox/connectors/hive/iceberg
1 file changed +14
-0
lines changed Original file line number Diff line number Diff line change @@ -244,6 +244,20 @@ void PositionalDeleteFileReader::updateDeleteBitmap(
244
244
deletePositionsOffset_++;
245
245
}
246
246
247
+ LOG (INFO) << " baseReadOffset = " << baseReadOffset
248
+ << " \n splitOffset_ = " << splitOffset_
249
+ << " \n deletePositionsOffset_ = " << deletePositionsOffset_
250
+ << " \n deletePositionsVector::size = "
251
+ << deletePositionsVector->size ()
252
+ << " \n deletePositions[deletePositionsVector->size() - 1] = "
253
+ << deletePositions[deletePositionsVector->size () - 1 ]
254
+ << " \n deletePositions[deletePositionsOffset_] = "
255
+ << deletePositions[deletePositionsOffset_]
256
+ << " \n deletePositions[deletePositionsOffset_ - 1] = "
257
+ << deletePositions[deletePositionsOffset_ - 1 ]
258
+ << " \n rowNumberLowerBound = " << rowNumberLowerBound
259
+ << " \n rowNumberUpperBound = " << rowNumberUpperBound;
260
+
247
261
// There might be multiple delete files for a single base file. The size of
248
262
// the deleteBitmapBuffer should be the largest position among all delte files
249
263
deleteBitmapBuffer->setSize (std::max (
You can’t perform that action at this time.
0 commit comments