Skip to content

Commit

Permalink
make data_gen_rounds smaller.
Browse files Browse the repository at this point in the history
  • Loading branch information
Rachelint committed Oct 8, 2024
1 parent ea5e80b commit 12e3bcc
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions datafusion/core/tests/fuzz_cases/aggregate_fuzz.rs
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ async fn test_basic_prim_aggr_no_group() {
// Build fuzzer
let fuzzer = builder
.data_gen_config(data_gen_config)
.data_gen_rounds(32)
.data_gen_rounds(24)
.add_sql("SELECT sum(a) FROM fuzz_table")
.add_sql("SELECT sum(distinct a) FROM fuzz_table")
.add_sql("SELECT max(a) FROM fuzz_table")
Expand Down Expand Up @@ -110,7 +110,7 @@ async fn test_basic_prim_aggr_group_by_single_int64() {
// Build fuzzer
let fuzzer = builder
.data_gen_config(data_gen_config)
.data_gen_rounds(32)
.data_gen_rounds(24)
.add_sql("SELECT b, sum(a) FROM fuzz_table GROUP BY b")
.add_sql("SELECT b, sum(distinct a) FROM fuzz_table GROUP BY b")
.add_sql("SELECT b, max(a) FROM fuzz_table GROUP BY b")
Expand Down Expand Up @@ -148,7 +148,7 @@ async fn test_basic_prim_aggr_group_by_single_string() {
// Build fuzzer
let fuzzer = builder
.data_gen_config(data_gen_config)
.data_gen_rounds(32)
.data_gen_rounds(24)
.add_sql("SELECT b, sum(a) FROM fuzz_table GROUP BY b")
.add_sql("SELECT b, sum(distinct a) FROM fuzz_table GROUP BY b")
.add_sql("SELECT b, max(a) FROM fuzz_table GROUP BY b")
Expand Down Expand Up @@ -187,7 +187,7 @@ async fn test_basic_prim_aggr_group_by_mixed_string_int64() {
// Build fuzzer
let fuzzer = builder
.data_gen_config(data_gen_config)
.data_gen_rounds(32)
.data_gen_rounds(24)
.add_sql("SELECT b, c, sum(a) FROM fuzz_table GROUP BY b, c")
.add_sql("SELECT b, c, sum(distinct a) FROM fuzz_table GROUP BY b,c")
.add_sql("SELECT b, c, max(a) FROM fuzz_table GROUP BY b, c")
Expand Down

0 comments on commit 12e3bcc

Please sign in to comment.