Returns the current row. Callers must check the iterator is not AtEnd() before calling GetRow().
| 54 | /// Returns the current row. Callers must check the iterator is not AtEnd() before |
| 55 | /// calling GetRow(). |
| 56 | TupleRow* GetRow() { |
| 57 | DCHECK(!AtEnd()); |
| 58 | return (*batch_it_)->GetRow(row_idx_); |
| 59 | } |
| 60 | |
| 61 | /// Moves the iterator to the next row. If the current row is the last row in the |
| 62 | /// batch, advances to either the next non-empty batch or the end. No-op if the |