Skip to content

Commit

Permalink
Fix generate random selection (#2656)
Browse files Browse the repository at this point in the history
  • Loading branch information
thinkharderdev authored Sep 6, 2022
1 parent 31aaef2 commit a37c038
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions parquet/src/arrow/async_reader.rs
Original file line number Diff line number Diff line change
Expand Up @@ -995,7 +995,6 @@ mod tests {
}

#[tokio::test]
#[ignore]
async fn test_fuzz_async_reader_selection() {
let testdata = arrow::util::test_util::parquet_test_data();
let path = format!("{}/alltypes_tiny_pages_plain.parquet", testdata);
Expand All @@ -1015,7 +1014,7 @@ mod tests {
let mut selectors = vec![];

while total_rows < 7300 {
let row_count: usize = rand.gen_range(0..100);
let row_count: usize = rand.gen_range(1..100);

let row_count = row_count.min(7300 - total_rows);

Expand Down

0 comments on commit a37c038

Please sign in to comment.