Skip to content

Commit

Permalink
remove unused imports
Browse files Browse the repository at this point in the history
  • Loading branch information
andygrove committed Jul 8, 2024
1 parent 4596f86 commit 04cfe12
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions native/core/src/execution/datafusion/planner.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 04cfe12

Please sign in to comment.