You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by ag...@apache.org on 2021/06/26 16:44:38 UTC

[arrow-datafusion] branch master updated: Fix build (#627)

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 2f1d6cb  Fix build (#627)
2f1d6cb is described below

commit 2f1d6cbc76f0069e20a741a18cf21f5d42020426
Author: Andy Grove <an...@gmail.com>
AuthorDate: Sat Jun 26 10:44:31 2021 -0600

    Fix build (#627)
---
 ballista/rust/core/src/execution_plans/query_stage.rs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/ballista/rust/core/src/execution_plans/query_stage.rs b/ballista/rust/core/src/execution_plans/query_stage.rs
index 1c7a7aa..c117110 100644
--- a/ballista/rust/core/src/execution_plans/query_stage.rs
+++ b/ballista/rust/core/src/execution_plans/query_stage.rs
@@ -426,7 +426,7 @@ mod tests {
             1,
             input_plan,
             work_dir.into_path().to_str().unwrap().to_owned(),
-            Some(Partitioning::Hash(vec![Arc::new(Column::new("a"))], 2)),
+            Some(Partitioning::Hash(vec![Arc::new(Column::new("a", 0))], 2)),
         )?;
         let mut stream = query_stage.execute(0).await?;
         let batches = utils::collect_stream(&mut stream)