alamb commented on code in PR #10306: URL: https://github.com/apache/datafusion/pull/10306#discussion_r1586213838
########## datafusion/sqllogictest/test_files/predicates.slt: ########## @@ -514,8 +517,38 @@ DROP TABLE t; statement ok CREATE EXTERNAL TABLE data_index_bloom_encoding_stats STORED AS PARQUET LOCATION '../../parquet-testing/data/data_index_bloom_encoding_stats.parquet'; +query TT +SHOW datafusion.execution.parquet.bloom_filter_on_read +---- +datafusion.execution.parquet.bloom_filter_on_read true + +query T +SELECT * FROM data_index_bloom_encoding_stats WHERE "String" = 'foo'; +---- + +query T +SELECT * FROM data_index_bloom_encoding_stats WHERE "String" = 'test'; +---- +test + +query T +SELECT * FROM data_index_bloom_encoding_stats WHERE "String" like '%e%'; +---- +Hello +test +are you +the quick +over +the lazy + + +######## +# Test query without bloom filter +# Refer to https://github.com/apache/datafusion/pull/7821#pullrequestreview-1688062599 +######## + statement ok -set datafusion.execution.parquet.bloom_filter_enabled=true; +set datafusion.execution.parquet.bloom_filter_on_read=false; Review Comment: 👍 -- 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]
