shreyas-dview commented on PR #1254:
URL: https://github.com/apache/parquet-mr/pull/1254#issuecomment-1891495368
Thrift Definition
```
struct TestLogicalType {
1: required i16 test_i16,
2: required byte test_i8
}
```
Current Parquet Schema Generated
```
message ParquetSchema {
required int32 test_i16 (INTEGER(16,true)) = 1;
required int32 test_i8 = 2;
}
```
Expected Parquet Schema
```
message ParquetSchema {
required int32 test_i16 (INTEGER(16,true)) = 1;
required int32 test_i8 (INTEGER(8,true)) = 2;
}
```
--
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]