alamb commented on code in PR #11493: URL: https://github.com/apache/datafusion/pull/11493#discussion_r1679719549
########## datafusion/core/src/physical_optimizer/sanity_checker.rs: ########## @@ -125,6 +127,14 @@ pub fn check_plan_sanity( plan.required_input_ordering().iter(), plan.required_input_distribution().iter() ) { + // TEMP HACK WORKAROUND https://github.com/apache/datafusion/issues/11492 + if child.as_any().downcast_ref::<UnionExec>().is_some() { + continue; + } + if child.as_any().downcast_ref::<SortExec>().is_some() { Review Comment: Locally i had to disable checking for `SortExec` as well to get our tests passing -- 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 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