mapleFU commented on issue #25570:
URL: https://github.com/apache/arrow/issues/25570#issuecomment-1414980249
When go through the code, I found this problem:
```c++
case ArrowTypeId::DATE32:
type = ParquetType::INT32;
logical_type = LogicalType::Date();
break;
case ArrowTypeId::DATE64:
type = ParquetType::INT32;
logical_type = LogicalType::Date();
break;
```
in `parquet/arrow/schema.cc`. Is this by design? If it's by design, should
we mark it in the doc?
@westonpace
--
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]