#include #include namespace DB { template using AggregateFunctionCorr = AggregateFunctionVarianceSimple>; void registerAggregateFunctionsStatisticsCorr(AggregateFunctionFactory & factory) { factory.registerFunction("corr", createAggregateFunctionStatisticsBinary, AggregateFunctionFactory::Case::Insensitive); } }