[Function](array) support array_range function (#13547)
* array_range with 3 impl * [Function](array) support array_range function * update * update code
This commit is contained in:
@ -36,6 +36,7 @@ void register_function_array_intersect(SimpleFunctionFactory&);
|
||||
void register_function_array_slice(SimpleFunctionFactory&);
|
||||
void register_function_array_difference(SimpleFunctionFactory&);
|
||||
void register_function_array_enumerate(SimpleFunctionFactory&);
|
||||
void register_function_array_range(SimpleFunctionFactory&);
|
||||
|
||||
void register_function_array(SimpleFunctionFactory& factory) {
|
||||
register_function_array_element(factory);
|
||||
@ -52,6 +53,7 @@ void register_function_array(SimpleFunctionFactory& factory) {
|
||||
register_function_array_slice(factory);
|
||||
register_function_array_difference(factory);
|
||||
register_function_array_enumerate(factory);
|
||||
register_function_array_range(factory);
|
||||
}
|
||||
|
||||
} // namespace doris::vectorized
|
||||
|
||||
Reference in New Issue
Block a user