clintropolis commented on code in PR #13935:
URL: https://github.com/apache/druid/pull/13935#discussion_r1136516787


##########
extensions-core/parquet-extensions/src/main/java/org/apache/druid/data/input/parquet/simple/ParquetGroupConverter.java:
##########
@@ -364,6 +364,7 @@ private static Object convertPrimitiveField(Group g, int 
fieldIndex, int index,
           case UINT_16:
             return g.getInteger(fieldIndex, index);
           case UINT_32:
+            return g.getInteger(fieldIndex, index) & (-1L >>> 32);

Review Comment:
   this could also use `Integer.toUnsignedLong`



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

Reply via email to