| 33 | /// queue is only used in scan nodes that don't attach buffers. |
| 34 | struct RowBatchBytesFn { |
| 35 | int64_t operator()(const std::unique_ptr<RowBatch>& batch) { |
| 36 | return batch->tuple_data_pool()->total_reserved_bytes(); |
| 37 | } |
| 38 | }; |
| 39 | |
| 40 | /// Provides blocking queue semantics for row batches. Row batches have a property that |
nothing calls this directly
no test coverage detected