Jefffrey commented on code in PR #9029: URL: https://github.com/apache/arrow-datafusion/pull/9029#discussion_r1468733045
########## docs/source/user-guide/sql/scalar_functions.md: ########## @@ -2663,6 +2695,18 @@ _Alias of [array_element](#array_element)._ _Alias of [array_element](#array_element)._ +### `list_has` + +_Alias of [array_has](#array_has)._ + +### `list_has_all` + +_Alias of [array_has_a;;](#array_has_all)._ Review Comment: ```suggestion _Alias of [array_has_all](#array_has_all)._ ``` typo ########## docs/source/user-guide/sql/scalar_functions.md: ########## @@ -2465,6 +2487,16 @@ Returns a slice of the array. array_slice(array, begin, end) ``` +#### Arguments + +- **array**: Array expression. + Can be a constant, column, or function, and any combination of array operators. +- **begin**: Index of the first element. Review Comment: Indicate that its 0/1 indexed? ########## docs/source/user-guide/sql/scalar_functions.md: ########## @@ -2663,6 +2695,18 @@ _Alias of [array_element](#array_element)._ _Alias of [array_element](#array_element)._ +### `list_has` + +_Alias of [array_has](#array_has)._ + +### `list_has_all` + +_Alias of [array_has_a;;](#array_has_all)._ + +### `list_has_any` + +_Alias of [array_has_any](#array_has_any)._ Review Comment: Also add links to them up here https://github.com/apache/arrow-datafusion/blob/ff7dfc3787b46715fce2b4e5aa805bb9afb9ce3a/docs/source/user-guide/sql/scalar_functions.md?plain=1#L1731-L1791 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
