jackwener commented on code in PR #5963: URL: https://github.com/apache/arrow-datafusion/pull/5963#discussion_r1164094681
########## datafusion/optimizer/src/analyzer/count_wildcard_rule.rs: ########## @@ -28,6 +28,12 @@ use crate::analyzer::AnalyzerRule; /// Resolve issue: https://github.com/apache/arrow-datafusion/issues/5473. pub struct CountWildcardRule {} +impl Default for CountWildcardRule { + fn default() -> Self { + Self::new() + } +} + Review Comment: we can use `#[derive(Default)]` -- 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]
