| 284 | } |
| 285 | |
| 286 | uint64_t IR_ALWAYS_INLINE IcebergDeleteNode::ProbeFilePosition( |
| 287 | const RowBatch::Iterator& probe_it) const { |
| 288 | DCHECK(!probe_it.AtEnd()); |
| 289 | const TupleRow* current_probe_row = probe_it.Get(); |
| 290 | return *current_probe_row->GetTuple(0)->GetBigIntSlot(pos_offset_); |
| 291 | } |
| 292 | |
| 293 | int IR_ALWAYS_INLINE IcebergDeleteNode::CountRowsToCopy(const RoaringBitmap64* deletes, |
| 294 | int remaining_capacity, RoaringBitmap64::Iterator* deletes_it, |
nothing calls this directly
no test coverage detected