Skip to content

Commit

Permalink
clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
thinkharderdev committed Mar 12, 2024
1 parent 2799e7e commit c4f37ec
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions arrow-flight/src/encode.rs
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@
use std::{collections::VecDeque, fmt::Debug, pin::Pin, sync::Arc, task::Poll};

use crate::{error::Result, FlightData, FlightDescriptor, SchemaAsIpc};
use arrow_array::cast::{downcast_array, AsArray};
use arrow_array::{Array, ArrayRef, ListArray, RecordBatch, RecordBatchOptions};

use arrow_array::{Array, ArrayRef, RecordBatch, RecordBatchOptions};
use arrow_ipc::writer::{DictionaryTracker, IpcDataGenerator, IpcWriteOptions};
use arrow_ipc::List;

use arrow_schema::{DataType, Field, FieldRef, Fields, Schema, SchemaRef};
use bytes::Bytes;
use futures::{ready, stream::BoxStream, Stream, StreamExt};
Expand Down Expand Up @@ -601,7 +601,6 @@ fn hydrate_dictionary(
#[cfg(test)]
mod tests {
use arrow_array::builder::StringDictionaryBuilder;
use arrow_array::cast::AsArray;
use arrow_array::*;
use arrow_array::{cast::downcast_array, types::*};
use arrow_cast::pretty::pretty_format_batches;
Expand Down

0 comments on commit c4f37ec

Please sign in to comment.