alamb commented on code in PR #8669:
URL: https://github.com/apache/arrow-datafusion/pull/8669#discussion_r1437876152


##########
datafusion/core/src/datasource/physical_plan/parquet/row_groups.rs:
##########
@@ -603,19 +666,38 @@ mod tests {
             ),
             vec![1]
         );
+
+        let expr = col("c1").lt(lit(5)).and(col("c2").is_null());

Review Comment:
   ```suggestion
           // c1 > 15 and c2 IS NULL => c1_max > 15 and bool_null_count > 0
           let expr = col("c1").lt(lit(5)).and(col("c2").is_null());
   ```



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

Reply via email to