alamb commented on PR #22652: URL: https://github.com/apache/datafusion/pull/22652#issuecomment-4673590782
Looks like the merge queue has caught a logical conflict https://github.com/apache/datafusion/actions/runs/27299136079/job/80639801196 ``` error[E0004]: non-exhaustive patterns: `&datafusion_expr::Partitioning::Range(_)` not covered --> datafusion/optimizer/src/eliminate_join.rs:326:19 | 326 | match &partitioning_scheme { | ^^^^^^^^^^^^^^^^^^^^ pattern `&datafusion_expr::Partitioning::Range(_)` not covered | note: `datafusion_expr::Partitioning` defined here --> datafusion/expr/src/logical_plan/plan.rs:4443:1 | 4443 | pub enum Partitioning { | ^^^^^^^^^^^^^^^^^^^^^ ... 4451 | Range(RangePartitioning), | ----- not covered = note: the matched value is of type `&datafusion_expr::Partitioning` help: ensure that all possible cases are being handled by adding a match arm with a wildcard pattern or an explicit pattern as shown | 330 ~ Partitioning::RoundRobinBatch(_) => {}, 331 + &datafusion_expr::Partitioning::Range(_) => todo!() | ``` -- 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] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
