andygrove commented on code in PR #2702: URL: https://github.com/apache/arrow-datafusion/pull/2702#discussion_r890327498
########## datafusion/expr/src/logical_plan/builder.rs: ########## @@ -19,6 +19,7 @@ use crate::expr_rewriter::{normalize_col, normalize_cols, rewrite_sort_cols_by_aggs}; use crate::utils::{columnize_expr, exprlist_to_fields, from_plan}; +use crate::Operator; Review Comment: I let some suggestions below that require these additional imports ```suggestion use crate::{and, binary_expr, Operator}; ``` ########## datafusion/expr/src/logical_plan/builder.rs: ########## @@ -19,6 +19,7 @@ use crate::expr_rewriter::{normalize_col, normalize_cols, rewrite_sort_cols_by_aggs}; use crate::utils::{columnize_expr, exprlist_to_fields, from_plan}; +use crate::Operator; Review Comment: I left some suggestions below that require these additional imports ```suggestion use crate::{and, binary_expr, Operator}; ``` -- 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...@arrow.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org