| 16 | } |
| 17 | |
| 18 | std::shared_ptr<LogicalOperator> Planner::getTableFunctionCall(const BoundTableScanInfo& info) { |
| 19 | DASSERT(info.func.has_value()); |
| 20 | auto call = std::make_shared<LogicalTableFunctionCall>(*info.func, info.bindData->copy()); |
| 21 | call->computeFactorizedSchema(); |
| 22 | return call; |
| 23 | } |
| 24 | |
| 25 | std::shared_ptr<LogicalOperator> Planner::getTableFunctionCall( |
| 26 | const BoundReadingClause& readingClause) { |
no test coverage detected