jayzhan211 commented on issue #6980: URL: https://github.com/apache/arrow-datafusion/issues/6980#issuecomment-1667040581
@izveigor , I dont fully understand about the difference between `list_xxx` and `array_xxx` in duckdb. As you said, list is for mutable, and array is for immutable. But like `append` a mutable function, why do they have `array_append`? `contains` a immutable function, but they have `list_contains`. For aggregate rewrite functions like `list_min`, `list_sum`, they don't alias with array, no `array_min` or `array_sum`, but we can do the same things with `array_aggregate()`. How do we differentiate `list`, and `array` in datafusion? -- 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]
