| 199 | } |
| 200 | |
| 201 | bool AggregateFinder::find(MemoryPool& pool, DsqlCompilerScratch* dsqlScratch, bool window, ExprNode* node) |
| 202 | { |
| 203 | AggregateFinder visitor(pool, dsqlScratch, window); |
| 204 | return visitor.visit(node); |
| 205 | } |
| 206 | |
| 207 | bool AggregateFinder::visit(ExprNode* node) |
| 208 | { |
no test coverage detected