Skip to content

Commit

Permalink
Resolve compile warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
timsaucer committed Oct 17, 2024
1 parent d67513b commit 44dc0d0
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 42 deletions.
12 changes: 1 addition & 11 deletions src/context.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,27 +17,17 @@

use crate::planner::{make_execution_graph, PyExecutionGraph};
use crate::shuffle::{RayShuffleReaderExec, ShuffleCodec};
use crate::utils::wait_for_future;
use datafusion::arrow::pyarrow::FromPyArrow;
use datafusion::arrow::pyarrow::ToPyArrow;
use datafusion::arrow::record_batch::RecordBatch;
use datafusion::error::{DataFusionError, Result};
use datafusion::execution::context::TaskContext;
use datafusion::execution::disk_manager::DiskManagerConfig;
use datafusion::execution::memory_pool::FairSpillPool;
use datafusion::execution::options::ReadOptions;
use datafusion::execution::registry::MemoryFunctionRegistry;
use datafusion::execution::runtime_env::RuntimeEnv;
use datafusion::execution::FunctionRegistry;
use datafusion::physical_plan::{displayable, ExecutionPlan};
use datafusion::prelude::*;
use datafusion_proto::bytes::{
physical_plan_from_bytes_with_extension_codec, physical_plan_to_bytes_with_extension_codec,
};
use datafusion_proto::physical_plan::{AsExecutionPlan, DefaultPhysicalExtensionCodec};
use datafusion_proto::physical_plan::AsExecutionPlan;
use datafusion_proto::protobuf;
use futures::StreamExt;
use prost::{DecodeError, Message};
use pyo3::exceptions::PyRuntimeError;
use pyo3::prelude::*;
use pyo3::types::{PyList, PyLong, PyTuple};
Expand Down
1 change: 0 additions & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ pub mod context;
pub mod planner;
pub mod query_stage;
pub mod shuffle;
pub mod utils;

/// A Python module implemented in Rust.
#[pymodule]
Expand Down
30 changes: 0 additions & 30 deletions src/utils.rs

This file was deleted.

0 comments on commit 44dc0d0

Please sign in to comment.