mkleen commented on code in PR #23388:
URL: https://github.com/apache/datafusion/pull/23388#discussion_r3544293906


##########
datafusion/pruning/src/file_pruner.rs:
##########
@@ -169,3 +184,65 @@ impl FilePruner {
         Ok(false)
     }
 }
+
+#[cfg(test)]
+mod tests {
+    use super::*;
+    use arrow::datatypes::{DataType, Field, Schema};
+    use datafusion_common::{
+        ColumnStatistics, ScalarValue, Statistics, stats::Precision,
+    };
+    use datafusion_expr::{col, lit};
+    use datafusion_physical_expr::planner::logical2physical;
+
+    #[test]
+    fn test_pruning_on_various_predicates() {

Review Comment:
   More additional tests



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