Uh oh!
There was an error while loading. Please reload this page.
chore: bump DataFusion to rev f4e519f - #783
Conversation
huaxingao
commented
Aug 6, 2024
@andygrove |
andygrove
commented
Aug 6, 2024
q97 (partial) selectsum(case when ssci.customer_skis not nullandcsci.customer_sk is null then 1 else 0 end) store_only
,sum(case when ssci.customer_sk is nullandcsci.customer_skis not null then 1 else 0 end) catalog_only
,sum(case when ssci.customer_skis not nullandcsci.customer_skis not null then 1 else 0 end) store_and_catalog
from ssci full outer join csci on (ssci.customer_sk=csci.customer_skandssci.item_sk=csci.item_sk)Seems like this may be a regression in DataFusion. I did make a change to |
andygrove
commented
Aug 6, 2024
The test passes for me locally, but consistently fails in CI |
andygrove
commented
Aug 6, 2024
I can reproduce locally now |
Uh oh!
There was an error while loading. Please reload this page.
andygrove
commented
Aug 6, 2024
The regression is caused by apache/datafusion#11627 |
viirya
commented
Aug 6, 2024
Do we just upgrade to the commit before one that causes CI failure? |
andygrove
commented
Aug 6, 2024
Yes, I pushed a commit to just upgrade to the point where min/max API changed |
* chore: bump DataFusion to rev c6f0d3c * fix style * Trigger Build * Update native/Cargo.toml --------- Co-authored-by: Andy Grove <agrove@apache.org>
Which issue does this PR close?
N/A
Rationale for this change
Weekly DataFusion revision bump. Here is the original PR
What changes are included in this PR?
Upgrade to DataFusion revision f4e519f9d , which includes these changes:
How are these changes tested?