| 185 | } |
| 186 | |
| 187 | LogicalPlan Planner::planCreateGraph(const BoundStatement& statement) { |
| 188 | auto& boundCreateGraph = statement.constCast<BoundCreateGraph>(); |
| 189 | auto op = std::make_shared<LogicalCreateGraph>(boundCreateGraph.getGraphName(), |
| 190 | boundCreateGraph.isAnyGraph()); |
| 191 | return getSimplePlan(std::move(op)); |
| 192 | } |
| 193 | |
| 194 | LogicalPlan Planner::planUseGraph(const BoundStatement& statement) { |
| 195 | auto& boundUseGraph = statement.constCast<BoundUseGraph>(); |
nothing calls this directly
no test coverage detected