doki23 opened a new issue, #3088:
URL: https://github.com/apache/parquet-java/issues/3088

   ### Describe the enhancement requested
   
   ```java
   public TypeMapping convertINT96(PrimitiveTypeName primitiveTypeName) throws 
RuntimeException {
     if (convertInt96ToArrowTimestamp) {
       return field(new ArrowType.Timestamp(TimeUnit.NANOSECOND, null));
     } else {
       return field(new ArrowType.Binary());
     }
   }
   ```
   When converting a Parquet type to an Arrow type, if the original type is 
int96 and the option convertInt96ToArrowTimestamp is set to false, the 
resulting Arrow type defaults to Binary. However, it might be more appropriate 
to use FixedSizeBinary instead.
   
   ### Component(s)
   
   _No response_


-- 
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: issues-unsubscr...@parquet.apache.org.apache.org

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


---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscr...@parquet.apache.org
For additional commands, e-mail: issues-h...@parquet.apache.org

Reply via email to