From c41f4c3fdb7929e858ff2ff12bfa56c6f401a326 Mon Sep 17 00:00:00 2001 From: zenghua Date: Mon, 20 May 2024 11:27:48 +0800 Subject: [PATCH] fix clippy Signed-off-by: zenghua --- rust/lakesoul-io/src/helpers.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/rust/lakesoul-io/src/helpers.rs b/rust/lakesoul-io/src/helpers.rs index 23ef9a3c1..5122bfb46 100644 --- a/rust/lakesoul-io/src/helpers.rs +++ b/rust/lakesoul-io/src/helpers.rs @@ -5,7 +5,7 @@ use std::{collections::HashMap, sync::Arc}; use arrow::datatypes::UInt32Type; -use arrow_array::{Int32Array, RecordBatch, UInt32Array}; +use arrow_array::{RecordBatch, UInt32Array}; use arrow_schema::{DataType, Field, Schema, SchemaBuilder, SchemaRef}; use datafusion::{ datasource::{ @@ -19,7 +19,6 @@ use datafusion_substrait::substrait::proto::Plan; use object_store::path::Path; use proto::proto::entity::JniWrapper; use rand::distributions::DistString; -use tracing::debug; use url::Url; use crate::{constant::{LAKESOUL_EMPTY_STRING, LAKESOUL_NULL_STRING}, filter::parser::Parser, lakesoul_io_config::LakeSoulIOConfig, transform::uniform_schema};