Skip to content

Commit

Permalink
rustfmt
Browse files Browse the repository at this point in the history
  • Loading branch information
alancai98 committed Oct 24, 2023
1 parent 3e84810 commit 81a1918
Showing 1 changed file with 2 additions and 8 deletions.
10 changes: 2 additions & 8 deletions partiql/benches/bench_agg.rs
Original file line number Diff line number Diff line change
Expand Up @@ -113,14 +113,8 @@ fn create_tests() -> Vec<(String, String)> {
.clone()
.map(|(&a, d)| create_query(vec![(a, *d)].as_slice(), false, false));

let aggs_all = aggs
.into_iter()
.cartesian_product([false])
.collect_vec();
let aggs_distinct = aggs
.into_iter()
.cartesian_product([true])
.collect_vec();
let aggs_all = aggs.into_iter().cartesian_product([false]).collect_vec();
let aggs_distinct = aggs.into_iter().cartesian_product([true]).collect_vec();

let full_aggs_all = groups
.clone()
Expand Down

0 comments on commit 81a1918

Please sign in to comment.