fix style

Signed-off-by: Duc Canh Le <duccanh.le@ahrefs.com>
This commit is contained in:
Duc Canh Le 2024-06-12 10:20:49 +00:00
parent cf4c46c5d1
commit eddae59730
3 changed files with 11 additions and 9 deletions

View File

@ -65,14 +65,16 @@ AggregateFunctionPtr createAggregateFunctionUniqCombined(bool use_64_bit_hash,
void registerAggregateFunctionUniqCombined(AggregateFunctionFactory & factory)
{
factory.registerFunction(
"uniqCombined",
factory.registerFunction("uniqCombined",
[](const std::string & name, const DataTypes & argument_types, const Array & parameters, const Settings *)
{ return createAggregateFunctionUniqCombined(false, name, argument_types, parameters); });
factory.registerFunction(
"uniqCombined64",
{
return createAggregateFunctionUniqCombined(false, name, argument_types, parameters);
});
factory.registerFunction("uniqCombined64",
[](const std::string & name, const DataTypes & argument_types, const Array & parameters, const Settings *)
{ return createAggregateFunctionUniqCombined(true, name, argument_types, parameters); });
{
return createAggregateFunctionUniqCombined(true, name, argument_types, parameters);
});
}
}

View File

@ -8,8 +8,8 @@
#include <Analyzer/InDepthQueryTreeVisitor.h>
#include <Analyzer/FunctionNode.h>
#include "Analyzer/IQueryTreeNode.h"
#include "Analyzer/ListNode.h"
#include <Analyzer/IQueryTreeNode.h>
#include <Analyzer/ListNode.h>
namespace DB