Skip to content

Commit

Permalink
Update datafusion/core/tests/fuzz_cases/aggregation_fuzzer/fuzzer.rs
Browse files Browse the repository at this point in the history
  • Loading branch information
alamb authored Oct 9, 2024
1 parent 61ab262 commit 50c068c
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions datafusion/core/tests/fuzz_cases/aggregation_fuzzer/fuzzer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,9 @@ impl AggregationFuzzer {
let res = self.run_inner().await;

if let Err(e) = res {
// Print the error via `Display` so that it displays nicely (the default `unwrap()`
// prints using `Debug` which escapes newlines, and makes multi-line messages
// hard to read
println!("{e}");
panic!("Error!");
}
Expand Down

0 comments on commit 50c068c

Please sign in to comment.