You are viewing a plain text version of this content. The canonical link for it is here.
Posted to github@arrow.apache.org by GitBox <gi...@apache.org> on 2022/05/23 18:37:55 UTC

[GitHub] [arrow-datafusion] andygrove commented on a diff in pull request #2601: WIP: Move most logical plan optimizer rules to new `datafusion-optimizer` crate

andygrove commented on code in PR #2601:
URL: https://github.com/apache/arrow-datafusion/pull/2601#discussion_r879765978


##########
datafusion/core/src/execution/context.rs:
##########
@@ -33,13 +33,18 @@ use crate::{
         MemTable, ViewTable,
     },
     logical_plan::{PlanType, ToStringifiedPlan},
-    optimizer::eliminate_filter::EliminateFilter,
-    optimizer::eliminate_limit::EliminateLimit,
     physical_optimizer::{
         aggregate_statistics::AggregateStatistics,
         hash_build_probe_order::HashBuildProbeOrder, optimizer::PhysicalOptimizerRule,
     },
 };
+pub use datafusion_optimizer::ExecutionProps;

Review Comment:
   `pub use` here to maintain compatibility with Ballista



-- 
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-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org