alamb commented on a change in pull request #2063:
URL: https://github.com/apache/arrow-datafusion/pull/2063#discussion_r833653731
##########
File path: datafusion/src/logical_plan/plan.rs
##########
@@ -913,7 +916,39 @@ impl LogicalPlan {
)?;
if !filters.is_empty() {
- write!(f, ", filters={:?}", filters)?;
+ let mut full_filter = vec![];
Review comment:
this is quite nice
##########
File path: datafusion/src/optimizer/filter_push_down.rs
##########
@@ -1431,7 +1431,7 @@ mod tests {
let plan =
table_scan_with_pushdown_provider(TableProviderFilterPushDown::Exact)?;
let expected = "\
- TableScan: test projection=None, filters=[#a = Int64(1)]";
+ TableScan: test projection=None, full_filters=[#a = Int64(1)]";
Review comment:
👍
--
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]