| 115 | } |
| 116 | |
| 117 | void BoundStatementVisitor::visitRegularQuery(const BoundStatement& statement) { |
| 118 | auto& regularQuery = dynamic_cast_checked<const BoundRegularQuery&>(statement); |
| 119 | for (auto i = 0u; i < regularQuery.getNumSingleQueries(); ++i) { |
| 120 | visitSingleQuery(*regularQuery.getSingleQuery(i)); |
| 121 | } |
| 122 | } |
| 123 | |
| 124 | void BoundStatementVisitor::visitRegularQueryUnsafe(BoundStatement& statement) { |
| 125 | auto& regularQuery = statement.cast<BoundRegularQuery>(); |
nothing calls this directly
no test coverage detected