Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
168ed58
chor: enable arrays_overlap
kazuyukitanimura Apr 3, 2026
b617476
fix: workaround arrays_overlap
kazuyukitanimura Apr 3, 2026
6a68c52
fix: workaround arrays_overlap
kazuyukitanimura Apr 3, 2026
d297ec4
fix: workaround arrays_overlap
kazuyukitanimura Apr 3, 2026
0bd466f
Merge remote-tracking branch 'upstream/main' into enable-arrays_overlop
kazuyukitanimura Apr 8, 2026
8108dd1
fix: workaround arrays_overlap
kazuyukitanimura Apr 8, 2026
bcf8687
test
kazuyukitanimura Apr 9, 2026
d93db81
fix: workaround arrays_overlap
kazuyukitanimura Apr 9, 2026
c2a757f
test
kazuyukitanimura Apr 9, 2026
a76adf3
fix: workaround arrays_overlap
kazuyukitanimura Apr 9, 2026
8469711
fix: workaround arrays_overlap
kazuyukitanimura Apr 9, 2026
bfafd62
fix: workaround arrays_overlap
kazuyukitanimura Apr 9, 2026
4760834
Revert "fix: workaround arrays_overlap"
kazuyukitanimura Apr 9, 2026
b0b1410
Merge remote-tracking branch 'upstream/main' into enable-arrays_overlop
kazuyukitanimura Apr 9, 2026
f06db49
fix: workaround arrays_overlap
kazuyukitanimura Apr 10, 2026
32e356b
fix: workaround arrays_overlap
kazuyukitanimura Apr 10, 2026
b9ee1b1
Merge remote-tracking branch 'upstream/main' into enable-arrays_overlop
kazuyukitanimura Apr 18, 2026
8069876
Reapply "fix: workaround arrays_overlap"
kazuyukitanimura Apr 18, 2026
dd0c097
Revert "Reapply "fix: workaround arrays_overlap""
kazuyukitanimura Apr 18, 2026
ae3b53a
fix: workaround arrays_overlap
kazuyukitanimura Apr 18, 2026
44c1559
fix: workaround arrays_overlap
kazuyukitanimura Apr 18, 2026
715693b
fix: workaround arrays_overlap
kazuyukitanimura Apr 18, 2026
b7a136f
fix: workaround arrays_overlap
kazuyukitanimura Apr 18, 2026
80a9108
fix: workaround arrays_overlap
kazuyukitanimura Apr 18, 2026
088161e
fix: workaround arrays_overlap
kazuyukitanimura Apr 18, 2026
3b65df7
fix: workaround arrays_overlap
kazuyukitanimura Apr 18, 2026
75b6db7
fix: workaround arrays_overlap
kazuyukitanimura Apr 18, 2026
fe321a0
fix: workaround arrays_overlap
kazuyukitanimura Apr 18, 2026
103c1c3
fix: workaround arrays_overlap
kazuyukitanimura Apr 18, 2026
7c98e84
fix: workaround arrays_overlap
kazuyukitanimura Apr 18, 2026
c3d0250
fix: workaround arrays_overlap
kazuyukitanimura Apr 18, 2026
f0f3698
fix: workaround arrays_overlap
kazuyukitanimura Apr 18, 2026
882c96f
fix: workaround arrays_overlap
kazuyukitanimura Apr 18, 2026
77413cf
Merge remote-tracking branch 'upstream/main' into enable-arrays_overlop
kazuyukitanimura Apr 20, 2026
77f65dc
fix: arrays_overlap
kazuyukitanimura Apr 20, 2026
bbb3dd3
fix: arrays_overlap
kazuyukitanimura Apr 20, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions docs/source/user-guide/latest/compatibility.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,9 +66,6 @@ the [Comet Supported Expressions Guide](expressions.md) for more information on

### Array Expressions

- **ArraysOverlap**: Inconsistent behavior when arrays contain NULL values.
[#3645](https://github.com/apache/datafusion-comet/issues/3645),
[#2036](https://github.com/apache/datafusion-comet/issues/2036)
- **ArrayUnion**: Sorts input arrays before performing the union, while Spark preserves the order of the first array
and appends unique elements from the second.
[#3644](https://github.com/apache/datafusion-comet/issues/3644)
Expand Down
2 changes: 1 addition & 1 deletion docs/source/user-guide/latest/expressions.md
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@ Comet supports using the following aggregate functions within window contexts wi
| ArrayRemove | Yes | |
| ArrayRepeat | No | |
| ArrayUnion | No | Behaves differently than spark. Comet sorts the input arrays before performing the union, while Spark preserves the order of the first array and appends unique elements from the second. |
| ArraysOverlap | No | |
| ArraysOverlap | Yes | |
| CreateArray | Yes | |
| ElementAt | Yes | Input must be an array. Map inputs are not supported. |
| Flatten | Yes | |
Expand Down
Loading
Loading