yabola commented on PR #1023:
URL: https://github.com/apache/parquet-mr/pull/1023#issuecomment-1425942666

   @wgtmac Sorry, `Boolean` type has to be used here, so that we can 
distinguish the `BLOCK_MIGHT_MATCH` and `BLOCK_MUST_MATCH`. This is example:
   ```
   Boolean b1 = new Boolean(true);
   Boolean b2 = new Boolean(true);
   boolean b3 = true;
   boolean b4 = true;
   
   assert b1 != b2;
   assert b1.equals(b2);
   assert b2 == b3 == b4;
   ```


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

Reply via email to