shangxinli commented on code in PR #900: URL: https://github.com/apache/parquet-mr/pull/900#discussion_r912586665
########## parquet-protobuf/src/main/java/org/apache/parquet/proto/ProtoSchemaConverter.java: ########## @@ -97,6 +127,46 @@ public MessageType convert(Class<? extends Message> protobufClass) { private <T> Builder<? extends Builder<?, GroupBuilder<T>>, GroupBuilder<T>> addField(FieldDescriptor descriptor, final GroupBuilder<T> builder) { if (descriptor.getJavaType() == JavaType.MESSAGE) { + if (unwrapProtoWrappers) { + String typeName = descriptor.getMessageType().getFullName(); + if (typeName.equals(PROTOBUF_TIMESTAMP_TYPE)) { + return builder.primitive(INT64, getRepetition(descriptor)).as(timestampType(true, TimeUnit.NANOS)); Review Comment: In that case, you can use the default 'TimeUnit.NANOS' while having that configured. -- 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