SteveLauC commented on issue #7241:
URL: 
https://github.com/apache/arrow-datafusion/issues/7241#issuecomment-1670944910

   BTW, in my code using the `datafusion` library, I try to skip failed 
optimizer rules using the following code snippet:
   
   ```
       let mut optimizer_cfg = OptimizerOptions::default();
       optimizer_cfg.skip_failed_rules = true;
       let mut cfg_opt = ConfigOptions::default();
       cfg_opt.optimizer = optimizer_cfg;
       let session_cfg = SessionConfig::from(cfg_opt);
   
       let ctx = SessionContext::with_config(session_cfg);
   ```
   
   But I can still get this error :(


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

Reply via email to