| 408 | } |
| 409 | |
| 410 | std::string PlanPrinter::getOperatorParams(const PhysicalOperator* physicalOperator) { |
| 411 | return physicalOperator->getPrintInfo()->toString(); |
| 412 | } |
| 413 | |
| 414 | std::string PlanPrinter::getOperatorName(const LogicalOperator* logicalOperator) { |
| 415 | return LogicalOperatorUtils::logicalOperatorTypeToString(logicalOperator->getOperatorType()); |
nothing calls this directly
no test coverage detected