| 14 | namespace parser { |
| 15 | |
| 16 | std::string StandaloneCallRewriter::getRewriteQuery(const Statement& statement) { |
| 17 | visit(statement); |
| 18 | return rewriteQuery; |
| 19 | } |
| 20 | |
| 21 | void StandaloneCallRewriter::visitStandaloneCallFunction(const Statement& statement) { |
| 22 | auto& standaloneCallFunc = statement.constCast<StandaloneCallFunction>(); |