adriangb commented on code in PR #17197: URL: https://github.com/apache/datafusion/pull/17197#discussion_r2288978066
########## datafusion/physical-plan/src/joins/hash_join.rs: ########## @@ -706,15 +975,7 @@ impl DisplayAs for HashJoinExec { .map(|(c1, c2)| format!("({c1}, {c2})")) .collect::<Vec<String>>() .join(", "); - let dynamic_filter_display = match self.dynamic_filter.as_ref() { - Some(dynamic_filter) => match dynamic_filter.current() { - Ok(current) if current != lit(true) => { - format!(", filter=[{current}]") - } - _ => "".to_string(), - }, - None => "".to_string(), - }; + let dynamic_filter_display = "".to_string(); Review Comment: 5c7a334 -- 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