gruuya commented on code in PR #880: URL: https://github.com/apache/iceberg-rust/pull/880#discussion_r1908316076
########## crates/integrations/datafusion/src/table/mod.rs: ########## @@ -134,11 +152,18 @@ impl TableProvider for IcebergTableProvider { self.table.clone(), self.snapshot_id, self.schema.clone(), + self.statistics + .clone() + .unwrap_or(Statistics::new_unknown(self.schema.as_ref())), Review Comment: One major missing aspect is applying the filters here (and perhaps projections) to the base statistics to further reduce the range of upper-lower bounds. -- 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: issues-unsubscr...@iceberg.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org For additional commands, e-mail: issues-h...@iceberg.apache.org