Ted-Jiang commented on code in PR #8930:
URL: https://github.com/apache/arrow-datafusion/pull/8930#discussion_r1460766214
##########
datafusion/core/tests/parquet/row_group_pruning.rs:
##########
@@ -578,6 +578,27 @@ async fn prune_decimal_in_list() {
6,
)
.await;
+ // test data -> r1: {1,2,3,4,5}, r2: {1,2,3,4,6}, r3: {1,2,3,4,6}
+ test_row_group_prune(
+ Scenario::DecimalBloomFilter,
+ "SELECT * FROM t where decimal_col in (5)",
+ Some(0),
+ Some(0),
+ Some(2),
Review Comment:
`Some(2),` is bloom filter pruned, will make more clearly in
https://github.com/apache/arrow-datafusion/issues/8922
--
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]