Jefffrey commented on issue #18881:
URL: https://github.com/apache/datafusion/issues/18881#issuecomment-3621545670

   Thanks for checking this @carlosahs 
   
   Sounds a bit complex, perhaps the easiest way forward is locally allow the 
allow, e.g.
   
   ```rust
   impl PhysicalOptimizerRule for AggregateStatistics {
       #[cfg_attr(feature = "recursive_protection", recursive::recursive)]
       #[allow(clippy::allow_attributes)]
       #[allow(clippy::only_used_in_recursion)] // See 
https://github.com/rust-lang/rust-clippy/issues/14566
       fn optimize_plan(
           &self,
           plan: Arc<dyn ExecutionPlan>,
           context: &OptimizerContext,
       ) -> Result<Arc<dyn ExecutionPlan>> {
   ```


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