ConeyLiu commented on code in PR #1143: URL: https://github.com/apache/parquet-mr/pull/1143#discussion_r1340067800
########## parquet-hadoop/src/main/java/org/apache/parquet/hadoop/rewrite/ParquetRewriter.java: ########## @@ -366,6 +366,10 @@ private void processChunk(ColumnChunkMetaData chunk, ColumnIndex columnIndex = reader.readColumnIndex(chunk); OffsetIndex offsetIndex = reader.readOffsetIndex(chunk); + BloomFilter bloomFilter = reader.readBloomFilter(chunk); + if (bloomFilter != null) { + writer.addBloomFilter(chunk.getPath().toDotString(), bloomFilter); Review Comment: Sorry for the late response. Added the related UTs. -- 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: dev-unsubscr...@parquet.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org