milenkovicm commented on code in PR #1435:
URL: 
https://github.com/apache/datafusion-ballista/pull/1435#discussion_r2751890092


##########
benchmarks/src/bin/tpch.rs:
##########
@@ -417,6 +424,17 @@ async fn benchmark_ballista(opt: BallistaBenchmarkOpt) -> 
Result<()> {
             config = config.set_str(BALLISTA_SHUFFLE_SORT_BASED_ENABLED, 
"true");
         }
 
+        for kv in &opt.config_overrides {
+            if let Some((key, value)) = kv.split_once('=') {
+                config = config.set_str(key.trim(), value.trim());
+            } else {
+                return Err(DataFusionError::Configuration(format!(

Review Comment:
   I was wrong, I apologise. I thought `Config::set_str` will return an error, 
unfortunately it will panic  internally, and previous change makes sense. It 
your call @andygrove if you wish to return previous change 



-- 
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]

Reply via email to