| 293 | Aggregate() = default; |
| 294 | |
| 295 | Aggregate(std::string function, std::shared_ptr<FunctionOptions> options, |
| 296 | std::vector<FieldRef> target, std::string name = "") |
| 297 | : function(std::move(function)), |
| 298 | options(std::move(options)), |
| 299 | target(std::move(target)), |
| 300 | name(std::move(name)) {} |
| 301 | |
| 302 | Aggregate(std::string function, std::shared_ptr<FunctionOptions> options, |
| 303 | FieldRef target, std::string name = "") |
no outgoing calls