Github user vvysotskyi commented on a diff in the pull request:
https://github.com/apache/drill/pull/1049#discussion_r153739725
--- Diff:
exec/java-exec/src/main/java/org/apache/drill/exec/store/parquet/columnreaders/ColumnReaderFactory.java
---
@@ -138,6 +138,8 @@
return new
ParquetFixedWidthDictionaryReaders.DictionaryBigIntReader(recordReader,
allocateSize, descriptor, columnChunkMetaData, fixedLength, (BigIntVector) v,
schemaElement);
--- End diff --
`DATE` logical type also encoded as the `INT32` physical type [1], so could
you please also add its support?
[1]
https://github.com/apache/parquet-format/blob/master/LogicalTypes.md#date
---