comphead commented on code in PR #12832:
URL: https://github.com/apache/datafusion/pull/12832#discussion_r1793674912
##########
datafusion/core/tests/fuzz_cases/aggregation_fuzzer/fuzzer.rs:
##########
@@ -132,7 +133,17 @@ struct QueryGroup {
}
impl AggregationFuzzer {
+ /// Run the fuzzer, printing an error and panicking if any of the tasks
fail
pub async fn run(&self) {
+ let res = self.run_inner().await;
+
+ if let Err(e) = res {
+ println!("{e}");
Review Comment:
do we need this block?
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]