Skip to content

Commit 4e5361d

Browse files
committed
rerun command
Signed-off-by: jayzhan211 <[email protected]>
1 parent 855064a commit 4e5361d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docs/source/user-guide/expressions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ Unlike to some databases the math functions in Datafusion works the same way as
185185
| array_concat(array[, ..., array_n]) | Concatenates arrays. `array_concat([1, 2, 3], [4, 5, 6]) -> [1, 2, 3, 4, 5, 6]` |
186186
| array_has(array, element) | Returns true if the array contains the element `array_has([1,2,3], 1) -> true` |
187187
| array_has_all(array, sub-array) | Returns true if all elements of sub-array exist in array `array_has_all([1,2,3], [1,3]) -> true` |
188-
| array_has_any(array, sub-array) | Returns true if any elements exist is both array `array_has_any([1,2,3], [1,4]) -> true` |
188+
| array_has_any(array, sub-array) | Returns true if any elements exist in both arrays `array_has_any([1,2,3], [1,4]) -> true` |
189189
| array_dims(array) | Returns an array of the array's dimensions. `array_dims([[1, 2, 3], [4, 5, 6]]) -> [2, 3]` |
190190
| array_fill(element, array) | Returns an array filled with copies of the given value. |
191191
| array_length(array, dimension) | Returns the length of the array dimension. `array_length([1, 2, 3, 4, 5]) -> 5` |

docs/source/user-guide/sql/scalar_functions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1554,7 +1554,7 @@ array_has_all(array, sub-array)
15541554

15551555
### `array_has_any`
15561556

1557-
Returns true if any elements exist is both array
1557+
Returns true if any elements exist in both arrays
15581558

15591559
```
15601560
array_has_any(array, sub-array)

0 commit comments

Comments
 (0)