| 9 | namespace binder { |
| 10 | |
| 11 | void BoundStatementRewriter::rewrite(BoundStatement& boundStatement, |
| 12 | main::ClientContext& clientContext) { |
| 13 | auto withClauseProjectionRewriter = WithClauseProjectionRewriter(); |
| 14 | withClauseProjectionRewriter.visitUnsafe(boundStatement); |
| 15 | |
| 16 | auto normalizedQueryPartMatchRewriter = NormalizedQueryPartMatchRewriter(&clientContext); |
| 17 | normalizedQueryPartMatchRewriter.visitUnsafe(boundStatement); |
| 18 | |
| 19 | auto matchClausePatternLabelRewriter = MatchClausePatternLabelRewriter(clientContext); |
| 20 | matchClausePatternLabelRewriter.visitUnsafe(boundStatement); |
| 21 | |
| 22 | auto defaultTypeSolver = DefaultTypeSolver(); |
| 23 | defaultTypeSolver.visit(boundStatement); |
| 24 | } |
| 25 | |
| 26 | } // namespace binder |
| 27 | } // namespace lbug |
nothing calls this directly
no test coverage detected