[
https://issues.apache.org/jira/browse/ORC-856?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Dongjoon Hyun resolved ORC-856.
-------------------------------
Assignee: Yiqun Zhang
Resolution: Fixed
This is resolved via https://github.com/apache/orc/pull/758
> Fix exception description in findSubtype
> ----------------------------------------
>
> Key: ORC-856
> URL: https://issues.apache.org/jira/browse/ORC-856
> Project: ORC
> Issue Type: Bug
> Components: Java
> Affects Versions: 1.7.0, master
> Reporter: Yiqun Zhang
> Assignee: Yiqun Zhang
> Priority: Trivial
> Fix For: 1.7.0
>
>
> {code:java}
> public static void findSubtype(TypeDescription schema,
> int goal,
> TypeVisitor visitor) {
> TypeDescription current = schema;
> int id = schema.getId();
> if (goal < id || goal > schema.getMaximumId()) {
> throw new IllegalArgumentException("Unknown type id " + id + " in " +
> current.toJson());
> }
> ....
> }
> {code}
> "Unknown type id " + {color:red}id{color} + " in " + current.toJson()
> Need to be modified to goal here
>
--
This message was sent by Atlassian Jira
(v8.3.4#803005)