| 192 | } |
| 193 | |
| 194 | LogicalPlan Planner::planUseGraph(const BoundStatement& statement) { |
| 195 | auto& boundUseGraph = statement.constCast<BoundUseGraph>(); |
| 196 | auto op = std::make_shared<LogicalUseGraph>(boundUseGraph.getGraphName()); |
| 197 | return getSimplePlan(std::move(op)); |
| 198 | } |
| 199 | |
| 200 | } // namespace planner |
| 201 | } // namespace lbug |
nothing calls this directly
no test coverage detected