Skip to content
This repository has been archived by the owner on Jun 6, 2024. It is now read-only.

Commit

Permalink
remove warnings, added customer.parquet
Browse files Browse the repository at this point in the history
  • Loading branch information
hyoungjook committed May 1, 2024
1 parent 2cbeb44 commit 4272268
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Binary file added data/tpch/customer.parquet
Binary file not shown.
4 changes: 2 additions & 2 deletions tests/hash_aggregate.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
use ahash::{HashMap, HashMapExt};
use datafusion::arrow::array::{Array, Int32Array, Int64Array};
use datafusion::arrow::array::{Array, Int64Array};
use datafusion::arrow::datatypes::{DataType, Field, Schema};
use datafusion::common::DFSchema;
use datafusion::execution::context::ExecutionProps;
Expand Down Expand Up @@ -85,7 +85,7 @@ fn hash_aggregate() {
let result = store.borrow_mut().remove(&pipeline_number).unwrap();
match result {
Entry::Batch(mut batches) => {
let mut batch = Arc::unwrap_or_clone(batches.pop().unwrap());
let batch = Arc::unwrap_or_clone(batches.pop().unwrap());
let aggregated_column = batch
.column(1)
.as_any()
Expand Down

0 comments on commit 4272268

Please sign in to comment.