From 04cfe12008539bfcb5e1ea4f3b8ce43c04c0a77d Mon Sep 17 00:00:00 2001 From: Andy Grove Date: Mon, 8 Jul 2024 16:11:16 -0600 Subject: [PATCH] remove unused imports --- native/core/src/execution/datafusion/planner.rs | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/native/core/src/execution/datafusion/planner.rs b/native/core/src/execution/datafusion/planner.rs index aab3b2814..9135842f0 100644 --- a/native/core/src/execution/datafusion/planner.rs +++ b/native/core/src/execution/datafusion/planner.rs @@ -21,19 +21,15 @@ use std::{collections::HashMap, sync::Arc}; use arrow_schema::{DataType, Field, Schema, TimeUnit}; use datafusion::functions_aggregate::bit_and_or_xor::{bit_and_udaf, bit_or_udaf, bit_xor_udaf}; -use datafusion::functions_aggregate::count::{count, count_udaf}; -use datafusion::functions_aggregate::first_last::last_value_udaf; +use datafusion::functions_aggregate::count::count_udaf; use datafusion::functions_aggregate::sum::sum_udaf; use datafusion::physical_plan::windows::BoundedWindowAggExec; use datafusion::physical_plan::InputOrderMode; -use datafusion::prelude::{BitAnd, BitOr, BitXor}; use datafusion::{ arrow::{compute::SortOptions, datatypes::SchemaRef}, common::DataFusionError, execution::FunctionRegistry, - functions_aggregate::count::Count, functions_aggregate::first_last::{FirstValue, LastValue}, - functions_aggregate::sum::Sum, logical_expr::Operator as DataFusionOperator, physical_expr::{ execution_props::ExecutionProps,