This is an automated email from the ASF dual-hosted git repository.

agrove pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/datafusion-ballista.git


The following commit(s) were added to refs/heads/main by this push:
     new 626e9fa4 fix imports after un-rebased PR (#1106)
626e9fa4 is described below

commit 626e9fa4a8bd86e7493c758a5888a57c27b3dcb2
Author: Marko Milenković <[email protected]>
AuthorDate: Thu Oct 31 22:02:52 2024 +0000

    fix imports after un-rebased PR (#1106)
---
 ballista-cli/src/main.rs              | 2 +-
 ballista/client/src/prelude.rs        | 2 +-
 benchmarks/src/bin/tpch.rs            | 2 +-
 examples/examples/remote-dataframe.rs | 2 +-
 examples/examples/remote-sql.rs       | 2 +-
 examples/examples/standalone-sql.rs   | 2 +-
 6 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/ballista-cli/src/main.rs b/ballista-cli/src/main.rs
index ec0c5bbc..1e94a733 100644
--- a/ballista-cli/src/main.rs
+++ b/ballista-cli/src/main.rs
@@ -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,
diff --git a/ballista/client/src/prelude.rs b/ballista/client/src/prelude.rs
index d06a6530..bdac712b 100644
--- a/ballista/client/src/prelude.rs
+++ b/ballista/client/src/prelude.rs
@@ -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;
diff --git a/benchmarks/src/bin/tpch.rs b/benchmarks/src/bin/tpch.rs
index c3806277..068b61c2 100644
--- a/benchmarks/src/bin/tpch.rs
+++ b/benchmarks/src/bin/tpch.rs
@@ -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,
diff --git a/examples/examples/remote-dataframe.rs 
b/examples/examples/remote-dataframe.rs
index ae6d6531..db2316e5 100644
--- a/examples/examples/remote-dataframe.rs
+++ b/examples/examples/remote-dataframe.rs
@@ -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,
diff --git a/examples/examples/remote-sql.rs b/examples/examples/remote-sql.rs
index 26ed11bc..756791ec 100644
--- a/examples/examples/remote-sql.rs
+++ b/examples/examples/remote-sql.rs
@@ -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,
diff --git a/examples/examples/standalone-sql.rs 
b/examples/examples/standalone-sql.rs
index d1e637e7..5b963253 100644
--- a/examples/examples/standalone-sql.rs
+++ b/examples/examples/standalone-sql.rs
@@ -16,7 +16,7 @@
 // under the License.
 
 use ballista::{
-    extension::BallistaSessionConfigExt,
+    extension::SessionConfigExt,
     prelude::{
         Result, SessionContextExt, BALLISTA_DEFAULT_SHUFFLE_PARTITIONS,
         BALLISTA_STANDALONE_PARALLELISM,


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to