| 51 | } |
| 52 | |
| 53 | Status SystemTableScanNode::MaterializeNextTuple(MemPool* tuple_pool, Tuple* tuple) { |
| 54 | tuple->Init(tuple_desc_->byte_size()); |
| 55 | RETURN_IF_ERROR(scanner_->MaterializeNextTuple(tuple_pool, tuple, tuple_desc_)); |
| 56 | return Status::OK(); |
| 57 | } |
| 58 | |
| 59 | Status SystemTableScanNode::GetNext(RuntimeState* state, RowBatch* row_batch, bool* eos) { |
| 60 | SCOPED_TIMER(runtime_profile_->total_time_counter()); |