xudong963 commented on PR #15832: URL: https://github.com/apache/datafusion/pull/15832#issuecomment-2849259474
Could you please refer to the error lints in CI? Such as ``` error[E0433]: failed to resolve: use of undeclared type `Statistics` --> datafusion/core/src/lib.rs:1365:12 | 98 | Ok(Statistics::new_unknown(&self.schema())) | ^^^^^^^^^^ use of undeclared type `Statistics` | help: consider importing one of these items | 2 + use datafusion::physical_plan::Statistics; | 2 + use datafusion_common::Statistics; | 2 + use datafusion_physical_plan::Statistics; | 2 + use parquet::file::statistics::Statistics; ``` It's saying, you need to import `Statistics` for the example in the doc, such as <img width="832" alt="image" src="https://github.com/user-attachments/assets/7aa713a1-249c-4433-bc1e-f6714780a663" /> -- 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: github-unsubscr...@datafusion.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: github-unsubscr...@datafusion.apache.org For additional commands, e-mail: github-h...@datafusion.apache.org