[feature-wip](array-type) Add array aggregation functions (#10108)
This commit is contained in:
@ -25,11 +25,13 @@ namespace doris::vectorized {
|
||||
void register_function_array_element(SimpleFunctionFactory&);
|
||||
void register_function_array_index(SimpleFunctionFactory&);
|
||||
void register_function_array_size(SimpleFunctionFactory&);
|
||||
void register_function_array_aggregation(SimpleFunctionFactory&);
|
||||
|
||||
void register_function_array(SimpleFunctionFactory& factory) {
|
||||
register_function_array_element(factory);
|
||||
register_function_array_index(factory);
|
||||
register_function_array_size(factory);
|
||||
register_function_array_aggregation(factory);
|
||||
}
|
||||
|
||||
} // namespace doris::vectorized
|
||||
|
||||
Reference in New Issue
Block a user