Skip to content

Commit

Permalink
fix imports after un-rebased PR (#1106)
Browse files Browse the repository at this point in the history
  • Loading branch information
milenkovicm authored Oct 31, 2024
1 parent 19d829f commit 626e9fa
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion ballista-cli/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ use std::env;
use std::path::Path;

use ballista::{
extension::BallistaSessionConfigExt,
extension::SessionConfigExt,
prelude::{
Result, SessionContextExt, BALLISTA_DEFAULT_BATCH_SIZE,
BALLISTA_STANDALONE_PARALLELISM, BALLISTA_WITH_INFORMATION_SCHEMA,
Expand Down
2 changes: 1 addition & 1 deletion ballista/client/src/prelude.rs
Original file line number Diff line number Diff line change
Expand Up @@ -30,5 +30,5 @@ pub use ballista_core::{

#[allow(deprecated)] // TO BE REMOVED
pub use crate::context::BallistaContext;
pub use crate::extension::SessionContextExt;
pub use crate::extension::{SessionConfigExt, SessionContextExt};
pub use futures::StreamExt;
2 changes: 1 addition & 1 deletion benchmarks/src/bin/tpch.rs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
//! Benchmark derived from TPC-H. This is not an official TPC-H benchmark.
use arrow_schema::SchemaBuilder;
use ballista::extension::BallistaSessionConfigExt;
use ballista::extension::SessionConfigExt;
use ballista::prelude::{
SessionContextExt, BALLISTA_COLLECT_STATISTICS, BALLISTA_DEFAULT_BATCH_SIZE,
BALLISTA_DEFAULT_SHUFFLE_PARTITIONS, BALLISTA_JOB_NAME,
Expand Down
2 changes: 1 addition & 1 deletion examples/examples/remote-dataframe.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
// specific language governing permissions and limitations
// under the License.

use ballista::{extension::BallistaSessionConfigExt, prelude::*};
use ballista::{extension::SessionConfigExt, prelude::*};
use ballista_examples::test_util;
use datafusion::{
execution::SessionStateBuilder,
Expand Down
2 changes: 1 addition & 1 deletion examples/examples/remote-sql.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
// specific language governing permissions and limitations
// under the License.

use ballista::{extension::BallistaSessionConfigExt, prelude::*};
use ballista::{extension::SessionConfigExt, prelude::*};
use ballista_examples::test_util;
use datafusion::{
execution::SessionStateBuilder,
Expand Down
2 changes: 1 addition & 1 deletion examples/examples/standalone-sql.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
// under the License.

use ballista::{
extension::BallistaSessionConfigExt,
extension::SessionConfigExt,
prelude::{
Result, SessionContextExt, BALLISTA_DEFAULT_SHUFFLE_PARTITIONS,
BALLISTA_STANDALONE_PARALLELISM,
Expand Down

0 comments on commit 626e9fa

Please sign in to comment.