diff --git a/src/AggregateFunctions/AggregateFunctionRangeSum.cpp b/src/AggregateFunctions/AggregateFunctionRangeSum.cpp new file mode 100644 index 00000000000..4584eea7a39 --- /dev/null +++ b/src/AggregateFunctions/AggregateFunctionRangeSum.cpp @@ -0,0 +1,56 @@ +#include +#include +#include +#include +#include +#include + +#include + + +namespace DB +{ +namespace ErrorCodes +{ + extern const int ILLEGAL_TYPE_OF_ARGUMENT; + extern const int NUMBER_OF_ARGUMENTS_DOESNT_MATCH; +} + +namespace +{ + template