You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@iceberg.apache.org by GitBox <gi...@apache.org> on 2021/01/16 19:51:17 UTC

[GitHub] [iceberg] rdblue commented on a change in pull request #2077: Hive: Add ObjectInspector implementations for UUID, Fixed and Time type

rdblue commented on a change in pull request #2077:
URL: https://github.com/apache/iceberg/pull/2077#discussion_r559024350



##########
File path: mr/src/main/java/org/apache/iceberg/mr/hive/serde/objectinspector/IcebergBinaryObjectInspector.java
##########
@@ -87,12 +59,17 @@ public Object copyObject(Object o) {
       byte[] bytes = (byte[]) o;
       return Arrays.copyOf(bytes, bytes.length);
     } else if (o instanceof ByteBuffer) {
-      ByteBuffer copy = ByteBuffer.wrap(((ByteBuffer) o).array(), ((ByteBuffer) o).arrayOffset(),
-              ((ByteBuffer) o).limit());
+      ByteBuffer copy =
+          ByteBuffer.wrap(((ByteBuffer) o).array(), ((ByteBuffer) o).arrayOffset(), ((ByteBuffer) o).limit());

Review comment:
       Does this just change formatting? If so, please revert it.




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

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@iceberg.apache.org
For additional commands, e-mail: issues-help@iceberg.apache.org