| 1384 | } |
| 1385 | |
| 1386 | void ScanRangeSharedState::EnqueueScanRange( |
| 1387 | const vector<ScanRange*>& ranges, bool at_front) { |
| 1388 | DCHECK(use_mt_scan_node_) << "Should only be called by MT scan nodes"; |
| 1389 | scan_range_queue_.EnqueueRanges(ranges, at_front); |
| 1390 | } |
| 1391 | |
| 1392 | Status ScanRangeSharedState::GetNextScanRange( |
| 1393 | RuntimeState* state, ScanRange** scan_range) { |
no test coverage detected