Skip to content

Commit

Permalink
fix benches
Browse files Browse the repository at this point in the history
  • Loading branch information
comphead committed Apr 16, 2024
1 parent c7f272c commit 3faeec9
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion benchmarks/src/tpch/run.rs
Original file line number Diff line number Diff line change
Expand Up @@ -312,7 +312,7 @@ mod tests {
use super::*;

use datafusion::common::exec_err;
use datafusion::error::{DataFusionError, Result};
use datafusion::error::Result;
use datafusion_proto::bytes::{
logical_plan_from_bytes, logical_plan_to_bytes, physical_plan_from_bytes,
physical_plan_to_bytes,
Expand Down Expand Up @@ -347,6 +347,7 @@ mod tests {
mem_table: false,
output_path: None,
disable_statistics: false,
prefer_hash_join: true
};
opt.register_tables(&ctx).await?;
let queries = get_query_sql(query)?;
Expand Down Expand Up @@ -379,6 +380,7 @@ mod tests {
mem_table: false,
output_path: None,
disable_statistics: false,
prefer_hash_join: true
};
opt.register_tables(&ctx).await?;
let queries = get_query_sql(query)?;
Expand Down

0 comments on commit 3faeec9

Please sign in to comment.