[
https://issues.apache.org/jira/browse/DRILL-7630?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17056063#comment-17056063
]
ASF GitHub Bot commented on DRILL-7630:
---------------------------------------
arina-ielchiieva commented on pull request #2019: DRILL-7630: Add additional
types into SchemaParser for Parquet
URL: https://github.com/apache/drill/pull/2019
# [DRILL-7630](https://issues.apache.org/jira/browse/DRILL-7630): Add
additional types into SchemaParser for Parquet
## Description
Parquet files supports some types that are currently not included in the
schema parser. Since schema parser is used during schema ser / de, processing
of such Parquet files fails. We need to add additional data types to the schema
parser.
## Documentation
NA
## Testing
Added unit test, ran all tests.
----------------------------------------------------------------
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.
For queries about this service, please contact Infrastructure at:
[email protected]
> Add additional types into SchemaParser
> --------------------------------------
>
> Key: DRILL-7630
> URL: https://issues.apache.org/jira/browse/DRILL-7630
> Project: Apache Drill
> Issue Type: Bug
> Affects Versions: 1.17.0
> Reporter: Vova Vysotskyi
> Assignee: Arina Ielchiieva
> Priority: Major
> Fix For: 1.18.0
>
>
> Drill uses SchemaParser when deserializing schema in a group scan. Also, it
> is used when deserializing schema from the metastore.
> The aim of this Jira is to add some absent types to fix issues when these
> types are used in the data file.
> Example of the failing test:
> {code:java}
> PlanTestBase.testPhysicalPlanExecutionBasedOnQuery("select * from
> cp.`parquet/uint_types.parquet`");
> {code}
> List of types to add:
> {code}
> MinorType.UINT1;
> MinorType.UINT2;
> MinorType.UINT4;
> MinorType.UINT8;
> MinorType.TINYINT;
> MinorType.SMALLINT;
> {code}
--
This message was sent by Atlassian Jira
(v8.3.4#803005)