Skip to content

Commit

Permalink
Addressed a final few clippy warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
westonpace committed Nov 27, 2024
1 parent 0f58fac commit 01beb54
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions benchmarks/src/bin/dfbench.rs
Original file line number Diff line number Diff line change
Expand Up @@ -53,12 +53,12 @@ pub async fn main() -> Result<()> {
env_logger::init();

match Options::from_args() {
Options::Tpch(opt) => opt.run().await,
Options::Tpch(opt) => Box::pin(opt.run()).await,
Options::TpchConvert(opt) => opt.run().await,
Options::Clickbench(opt) => opt.run().await,
Options::ParquetFilter(opt) => opt.run().await,
Options::Sort(opt) => opt.run().await,
Options::SortTpch(opt) => opt.run().await,
Options::Imdb(opt) => opt.run().await,
Options::Imdb(opt) => Box::pin(opt.run()).await,
}
}
2 changes: 1 addition & 1 deletion benchmarks/src/bin/imdb.rs
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ pub async fn main() -> Result<()> {
env_logger::init();
match ImdbOpt::from_args() {
ImdbOpt::Benchmark(BenchmarkSubCommandOpt::DataFusionBenchmark(opt)) => {
opt.run().await
Box::pin(opt.run()).await
}
ImdbOpt::Convert(opt) => opt.run().await,
}
Expand Down
2 changes: 1 addition & 1 deletion benchmarks/src/bin/tpch.rs
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ async fn main() -> Result<()> {
env_logger::init();
match TpchOpt::from_args() {
TpchOpt::Benchmark(BenchmarkSubCommandOpt::DataFusionBenchmark(opt)) => {
opt.run().await
Box::pin(opt.run()).await
}
TpchOpt::Convert(opt) => opt.run().await,
}
Expand Down

0 comments on commit 01beb54

Please sign in to comment.