1 | #include "duckdb/function/aggregate/distributive_functions.hpp" |
---|---|
2 | #include "duckdb/common/exception.hpp" |
3 | #include "duckdb/common/types/null_value.hpp" |
4 | #include "duckdb/common/vector_operations/vector_operations.hpp" |
5 | #include "duckdb/function/aggregate_function.hpp" |
6 | |
7 | namespace duckdb { |
8 | |
9 | void BuiltinFunctions::RegisterDistributiveAggregates() { |
10 | Register<CountStarFun>(); |
11 | Register<CountFun>(); |
12 | Register<FirstFun>(); |
13 | } |
14 | |
15 | } // namespace duckdb |
16 |