The Parquet specification contains a logical type DATE that is stored as a INT32 https://parquet.apache.org/docs/file-format/types/logicaltypes/#date
The library should support this type. The java.time.LocalDate seems to be the obvious class in Java. However, it should also be possible to write java.util.Date objects.
The Parquet specification contains a logical type DATE that is stored as a INT32 https://parquet.apache.org/docs/file-format/types/logicaltypes/#date
The library should support this type. The
java.time.LocalDateseems to be the obvious class in Java. However, it should also be possible to writejava.util.Dateobjects.