(args: &[ArrayRef])
| 331 | } |
| 332 | |
| 333 | fn array_remove_all_inner(args: &[ArrayRef]) -> Result<ArrayRef> { |
| 334 | let [array, element] = take_function_args("array_remove_all", args)?; |
| 335 | |
| 336 | let arr_n = vec![i64::MAX; array.len()]; |
| 337 | array_remove_internal(array, element, &arr_n) |
| 338 | } |
| 339 | |
| 340 | fn array_remove_internal( |
| 341 | array: &ArrayRef, |
nothing calls this directly
no test coverage detected
searching dependent graphs…