Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
devinjdangelo committed Mar 17, 2024
1 parent ed678ff commit 8719fd8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 11 deletions.
13 changes: 3 additions & 10 deletions datafusion/sql/src/unparser/plan.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,16 +15,9 @@
// specific language governing permissions and limitations
// under the License.

use datafusion_common::{
internal_err, not_impl_err, plan_err,
tree_node::{Transformed, TreeNode, TreeNodeRecursion},
DataFusionError, Result,
};
use datafusion_expr::{
expr::Alias, utils::find_column_exprs, Expr, ExprSchemable, JoinConstraint, JoinType,
LogicalPlan,
};
use sqlparser::ast::{self, Ident, SelectItem};
use datafusion_common::{internal_err, not_impl_err, plan_err, DataFusionError, Result};
use datafusion_expr::{expr::Alias, Expr, JoinConstraint, JoinType, LogicalPlan};
use sqlparser::ast::{self};

use crate::unparser::utils::unproject_agg_exprs;

Expand Down
2 changes: 1 addition & 1 deletion datafusion/sql/src/unparser/utils.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ use datafusion_common::{
tree_node::{Transformed, TreeNode},
Result,
};
use datafusion_expr::{Aggregate, Expr, LogicalPlan, Projection};
use datafusion_expr::{Aggregate, Expr, LogicalPlan};

/// Recursively searches children of [LogicalPlan] to find an Aggregate node if one exists
/// prior to encountering a Join, TableScan, or subquery node. If an Aggregate node is not found
Expand Down

0 comments on commit 8719fd8

Please sign in to comment.