Skip to content

Commit 3d8216b

Browse files
Fixes
1 parent 1710e06 commit 3d8216b

3 files changed

Lines changed: 3 additions & 8 deletions

File tree

src/cli/mod.rs

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -49,10 +49,7 @@ use {
4949
};
5050
#[cfg(feature = "vortex")]
5151
use {
52-
vortex::{
53-
array::{arrow::FromArrowArray, stream::ArrayStream, ArrayRef},
54-
error::VortexError,
55-
},
52+
vortex::array::{arrow::FromArrowArray, ArrayRef},
5653
vortex_file::VortexWriteOptions,
5754
vortex_session::VortexSession,
5855
};

src/server/flightsql/mod.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ use super::try_start_metrics_server;
4040

4141
const DEFAULT_TIMEOUT_SECONDS: u64 = 60;
4242

43+
#[allow(deprecated)]
4344
pub fn create_server_handle(
4445
config: &AppConfig,
4546
flightsql: FlightSqlServiceImpl,

src/tpch.rs

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -40,10 +40,7 @@ use url::Url;
4040
#[cfg(feature = "vortex")]
4141
use {
4242
datafusion::arrow::compute::concat_batches,
43-
vortex::{
44-
array::{arrow::FromArrowArray, stream::ArrayStream, ArrayRef},
45-
error::VortexError,
46-
},
43+
vortex::array::{arrow::FromArrowArray, ArrayRef},
4744
vortex_file::VortexWriteOptions,
4845
vortex_session::VortexSession,
4946
};

0 commit comments

Comments
 (0)