mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-23 16:12:01 +00:00
Fix error
This commit is contained in:
parent
c424ad12aa
commit
6f1878b12a
@ -182,7 +182,8 @@ AggregateFunctionPtr createAggregateFunctionCategoricalIV(
|
|||||||
|
|
||||||
void registerAggregateFunctionCategoricalIV(AggregateFunctionFactory & factory)
|
void registerAggregateFunctionCategoricalIV(AggregateFunctionFactory & factory)
|
||||||
{
|
{
|
||||||
factory.registerFunction("categoricalInformationValue", createAggregateFunctionCategoricalIV);
|
AggregateFunctionProperties properties = { .returns_default_when_only_null = true };
|
||||||
|
factory.registerFunction("categoricalInformationValue", { createAggregateFunctionCategoricalIV, properties });
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user