Veeupup commented on issue #8181: URL: https://github.com/apache/arrow-datafusion/issues/8181#issuecomment-1817864491
I test in in duckdb and results are below, should we be compatible with them? ```sql D select list_intersect(null, null); -- return null ┌────────────────────────────┐ │ list_intersect(NULL, NULL) │ │ int32 │ ├────────────────────────────┤ │ │ └────────────────────────────┘ D select list_intersect(null, []); -- return null ┌─────────────────────────────────────────┐ │ list_intersect(NULL, main.list_value()) │ │ int32 │ ├─────────────────────────────────────────┤ │ │ └─────────────────────────────────────────┘ D select list_intersect([], []); ┌──────────────────────────────────────────────────────┐ │ list_intersect(main.list_value(), main.list_value()) │ │ int32[] │ ├──────────────────────────────────────────────────────┤ │ [] │ └──────────────────────────────────────────────────────┘ ``` -- 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]
