andygrove opened a new issue, #1042: URL: https://github.com/apache/datafusion-comet/issues/1042
### What is the problem the feature request solves? We would like to support all array operations natively in Comet. - [ ] array: SELECT array(1, 2, 3) - [ ] array_agg: SELECT array_agg(col) FROM VALUES (1), (2), (1) AS tab(col) - [ ] array_append: SELECT array_append(array('b', 'd', 'c', 'a'), 'd') - [ ] array_compact: SELECT array_compact(array(1, 2, 3, null)) - [ ] array_contains: SELECT array_contains(array(1, 2, 3), 2) - [ ] array_distinct: SELECT array_distinct(array(1, 2, 3, null, 3)) - [ ] array_except: SELECT array_except(array(1, 2, 3), array(1, 3, 5)) - [ ] array_insert: SELECT array_insert(array(1, 2, 3, 4), 5, 5) - [ ] array_intersect: SELECT array_intersect(array(1, 2, 3), array(1, 3, 5)) - [ ] array_join: SELECT array_join(array('hello', 'world'), ' ') - [ ] array_max: SELECT array_max(array(1, 20, null, 3)) - [ ] array_min: SELECT array_min(array(1, 20, null, 3)) - [ ] array_position: SELECT array_position(array(3, 2, 1), 1) - [ ] array_remove: SELECT array_remove(array(1, 2, 3, null, 3), 3) - [ ] array_repeat: SELECT array_repeat('123', 2) - [ ] array_size: SELECT array_size(array('b', 'd', 'c', 'a')) - [ ] array_sort: SELECT array_sort(array(5, 6, 1), (left, right) -> case when left < right then -1 when left > right then 1 else 0 end) - [ ] array_union: SELECT array_union(array(1, 2, 3), array(1, 3, 5)) - [ ] arrays_overlap: SELECT arrays_overlap(array(1, 2, 3), array(3, 4, 5)) - [ ] arrays_zip: SELECT arrays_zip(array(1, 2, 3), array(2, 3, 4)) ### Describe the potential solution _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: github-unsubscr...@datafusion.apache.org.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: github-unsubscr...@datafusion.apache.org For additional commands, e-mail: github-h...@datafusion.apache.org