We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
array_max
Currently, Spark, Snowflake and Presto support array_max function. This can also be useful for DataFusion.
array_max(make_array(3,1,4,2)) => 4 array_max(make_array('h','e','o','l','l',NULL)) => o array_max(make_array(NULL,NULL)) => NULL
Spark: https://docs.databricks.com/en/sql/language-manual/functions/array_max.html Snowflake: https://docs.snowflake.com/en/sql-reference/functions/array_max Presto: https://prestodb.io/docs/current/functions/array.html#array_max-x-x
Adding array_max function support to DataFusion.
No response
The text was updated successfully, but these errors were encountered:
take
Sorry, something went wrong.
erenavsarogullari
Successfully merging a pull request may close this issue.
Is your feature request related to a problem or challenge?
Currently, Spark, Snowflake and Presto support
array_max
function. This can also be useful for DataFusion.Spark: https://docs.databricks.com/en/sql/language-manual/functions/array_max.html
Snowflake: https://docs.snowflake.com/en/sql-reference/functions/array_max
Presto: https://prestodb.io/docs/current/functions/array.html#array_max-x-x
Describe the solution you'd like
Adding
array_max
function support to DataFusion.Describe alternatives you've considered
No response
Additional context
No response
The text was updated successfully, but these errors were encountered: