### Is your feature request related to a problem or challenge? ## Summary | Characteristic | Description | | --------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | | Function name: | `empty` | | Aliases: | - | | Original function?: | No | | Function Description: | <b>ClickHouse:</b> Returns 1 for an empty array or 0 for a non-empty array. | | Sources: | [Concept](https://github.com/apache/arrow-datafusion/discussions/6855) [ClickHouse](https://clickhouse.com/docs/en/sql-reference/functions/array-functions#empty) | ## Examples: ``` SELECT empty([]) Query id: 42b6e940-aada-4bfb-afb8-77d8288a0335 ┌─empty([])─┐ │ 1 │ └───────────┘ ``` ``` SELECT empty([1, 2, 3]) Query id: 3a22e137-ffe4-4951-bc6e-27d85a150c95 ┌─empty([1, 2, 3])─┐ │ 0 │ └──────────────────┘ ``` ### Describe the solution you'd like _No response_ ### Describe alternatives you've considered _No response_ ### Additional context _No response_