FANNG1 commented on code in PR #588: URL: https://github.com/apache/iceberg-rust/pull/588#discussion_r1738462529
########## crates/integrations/datafusion/src/table.rs: ########## @@ -82,6 +82,26 @@ impl TableProvider for IcebergTableProvider { Ok(Arc::new(IcebergTableScan::new( self.table.clone(), self.schema.clone(), + _filters, ))) } + + fn supports_filters_pushdown( + &self, + filters: &[&Expr], + ) -> std::result::Result<Vec<TableProviderFilterPushDown>, datafusion::error::DataFusionError> + { + let filter_support = filters + .iter() + .map(|e| { + if let Expr::BinaryExpr(BinaryExpr { .. }) = e { + TableProviderFilterPushDown::Inexact Review Comment: why not return `exact`? -- 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