Skip to content

Commit

Permalink
fix clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
Lordworms committed Sep 26, 2024
1 parent ea63773 commit 39f2f24
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions datafusion/sql/src/expr/identifier.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,17 +15,15 @@
// specific language governing permissions and limitations
// under the License.

use std::sync::Arc;

use arrow_schema::{DataType, Field};
use arrow_schema::Field;
use sqlparser::ast::{Expr as SQLExpr, Ident};

use datafusion_common::{
exec_err, internal_err, not_impl_err, plan_datafusion_err, Column, DFSchema,
DataFusionError, Result, ScalarValue, TableReference,
DataFusionError, Result, TableReference,
};
use datafusion_expr::planner::PlannerResult;
use datafusion_expr::{lit, Case, Expr};
use datafusion_expr::{Case, Expr};

use crate::planner::{ContextProvider, PlannerContext, SqlToRel};
use datafusion_expr::UNNAMED_TABLE;
Expand Down

0 comments on commit 39f2f24

Please sign in to comment.