(args: &[ArrayRef])
| 324 | } |
| 325 | |
| 326 | fn array_remove_n_inner(args: &[ArrayRef]) -> Result<ArrayRef> { |
| 327 | let [array, element, max] = take_function_args("array_remove_n", args)?; |
| 328 | |
| 329 | let arr_n = as_int64_array(max)?.values().to_vec(); |
| 330 | array_remove_internal(array, element, &arr_n) |
| 331 | } |
| 332 | |
| 333 | fn array_remove_all_inner(args: &[ArrayRef]) -> Result<ArrayRef> { |
| 334 | let [array, element] = take_function_args("array_remove_all", args)?; |
nothing calls this directly
no test coverage detected
searching dependent graphs…