| 291 | } |
| 292 | |
| 293 | std::string OperatorCtx::toString() const { |
| 294 | return fmt::format( |
| 295 | "{}#{}[task={}, pipe={}, driver={}, op={}]", |
| 296 | operatorType(), |
| 297 | planNodeId(), |
| 298 | taskId(), |
| 299 | driverCtx_->pipelineId, |
| 300 | driverCtx_->driverId, |
| 301 | operatorId()); |
| 302 | } |
| 303 | |
| 304 | void OperatorCtx::traverseOpToGetRowCount( |
| 305 | uint64_t& totalRowCount, |
no test coverage detected