Github user vvysotskyi commented on a diff in the pull request: https://github.com/apache/drill/pull/805#discussion_r118204069 --- Diff: exec/java-exec/src/test/java/org/apache/drill/exec/store/parquet/TestParquetMetadataCache.java --- @@ -398,10 +399,115 @@ public void testDrill4877() throws Exception { } + @Test // DRILL-4139 + public void testBooleanPartitionPruning() throws Exception { + final String boolPartitionTable = "dfs_test.tmp.`interval_bool_partition`"; + try { + test("create table %s partition by (col_bln) as " + + "select * from cp.`parquet/alltypes_required.parquet`", boolPartitionTable); + test("refresh table metadata %s", boolPartitionTable); --- End diff -- Thanks, modified tests to cover those cases.
--- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is enabled but not working, please contact infrastructure at infrastruct...@apache.org or file a JIRA ticket with INFRA. ---