Syleechan commented on code in PR #8328: URL: https://github.com/apache/arrow-datafusion/pull/8328#discussion_r1406997686
########## docs/source/user-guide/sql/scalar_functions.md: ########## @@ -1170,6 +1171,20 @@ substr_index(str, delim, count) - **delim**: the string to find in str to split str. - **count**: The number of times to search for the delimiter. Can be both a positive or negative number. +### `find_in_set` Review Comment: Thanks @alamb . I have checked that the array functions input args type are different from the string function find_in_set.Actually, we use calcite to transfer to datafusion to compute data, and calcite also has array_contains, array_position functions.But Calcite take them as different functions, array functions process array input args and string functions process string input args. https://calcite.apache.org/docs/reference.html#:~:text=ARRAY_POSITION(array%2C%20element) https://calcite.apache.org/docs/reference.html#:~:text=FIND_IN_SET(matchStr%2C%20textStr) these are calcite style functions in the reference. -- 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]
