Skip to content

Commit 12e3bcc

Browse files
committed
make data_gen_rounds smaller.
1 parent ea5e80b commit 12e3bcc

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

datafusion/core/tests/fuzz_cases/aggregate_fuzz.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ async fn test_basic_prim_aggr_no_group() {
7272
// Build fuzzer
7373
let fuzzer = builder
7474
.data_gen_config(data_gen_config)
75-
.data_gen_rounds(32)
75+
.data_gen_rounds(24)
7676
.add_sql("SELECT sum(a) FROM fuzz_table")
7777
.add_sql("SELECT sum(distinct a) FROM fuzz_table")
7878
.add_sql("SELECT max(a) FROM fuzz_table")
@@ -110,7 +110,7 @@ async fn test_basic_prim_aggr_group_by_single_int64() {
110110
// Build fuzzer
111111
let fuzzer = builder
112112
.data_gen_config(data_gen_config)
113-
.data_gen_rounds(32)
113+
.data_gen_rounds(24)
114114
.add_sql("SELECT b, sum(a) FROM fuzz_table GROUP BY b")
115115
.add_sql("SELECT b, sum(distinct a) FROM fuzz_table GROUP BY b")
116116
.add_sql("SELECT b, max(a) FROM fuzz_table GROUP BY b")
@@ -148,7 +148,7 @@ async fn test_basic_prim_aggr_group_by_single_string() {
148148
// Build fuzzer
149149
let fuzzer = builder
150150
.data_gen_config(data_gen_config)
151-
.data_gen_rounds(32)
151+
.data_gen_rounds(24)
152152
.add_sql("SELECT b, sum(a) FROM fuzz_table GROUP BY b")
153153
.add_sql("SELECT b, sum(distinct a) FROM fuzz_table GROUP BY b")
154154
.add_sql("SELECT b, max(a) FROM fuzz_table GROUP BY b")
@@ -187,7 +187,7 @@ async fn test_basic_prim_aggr_group_by_mixed_string_int64() {
187187
// Build fuzzer
188188
let fuzzer = builder
189189
.data_gen_config(data_gen_config)
190-
.data_gen_rounds(32)
190+
.data_gen_rounds(24)
191191
.add_sql("SELECT b, c, sum(a) FROM fuzz_table GROUP BY b, c")
192192
.add_sql("SELECT b, c, sum(distinct a) FROM fuzz_table GROUP BY b,c")
193193
.add_sql("SELECT b, c, max(a) FROM fuzz_table GROUP BY b, c")

0 commit comments

Comments
 (0)