izveigor opened a new issue, #6979:
URL: https://github.com/apache/arrow-datafusion/issues/6979
### Is your feature request related to a problem or challenge?
## Summary
| Characteristic | Description
|
| --------------------- |
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
| Function name: | `array_except`
|
| Aliases: | `list_except`
|
| Original function?: | No
|
| Function Description: | <b>Azure DataBricks:</b> Returns an array of the
elements in array1 but not in array2. </br> <b> Spark SQL: </b> Returns all
elements from col1 array but not in col2 array.
|
| Sources: |
[Concept](https://github.com/apache/arrow-datafusion/discussions/6855)
[Azure](https://learn.microsoft.com/en-us/azure/databricks/sql/language-manual/functions/array_except)
[Spark](https://sparkbyexamples.com/spark/spark-sql-array-functions/) |
## Examples:
```
select array_except([1, 2, 3, 4], [2, 3, 1, 5]);
----
[4, 5]
```
```
select array_except([1, 2, 2, 3, 4], [1, 3, 1, 5]);
----
[2, 4]
```
### Describe the solution you'd like
_No response_
### Describe alternatives you've considered
_No response_
### Additional context
_No response_
--
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]