Skip to content

Commit 4b6d433

Browse files
committed
fmt & clippy
Signed-off-by: jayzhan211 <[email protected]>
1 parent 30be8a0 commit 4b6d433

File tree

3 files changed

+3
-6
lines changed

3 files changed

+3
-6
lines changed

datafusion-cli/Cargo.lock

Lines changed: 0 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

datafusion/common/src/types/native.rs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,16 +16,15 @@
1616
// under the License.
1717

1818
use super::{
19-
LogicalField, LogicalFieldRef, LogicalFields, LogicalType, LogicalTypeRef,
20-
LogicalUnionFields, TypeSignature,
19+
LogicalField, LogicalFieldRef, LogicalFields, LogicalType, LogicalUnionFields,
20+
TypeSignature,
2121
};
2222
use crate::error::{Result, _internal_err};
2323
use arrow::compute::can_cast_types;
2424
use arrow_schema::{
2525
DataType, Field, FieldRef, Fields, IntervalUnit, TimeUnit, UnionFields,
2626
};
2727
use std::sync::Arc;
28-
use std::sync::{Arc, OnceLock};
2928

3029
/// Representation of a type that DataFusion can handle natively. It is a subset
3130
/// of the physical variants in Arrow's native [`DataType`].

datafusion/expr/src/type_coercion/functions.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ use arrow::{
2323
};
2424
use datafusion_common::{
2525
exec_err, internal_datafusion_err, internal_err, plan_err,
26-
types::{logical_string, NativeType},
26+
types::NativeType,
2727
utils::{coerced_fixed_size_list_to_list, list_ndims},
2828
Result,
2929
};

0 commit comments

Comments
 (0)