Gopal V created HIVE-10164:
------------------------------
Summary: LLAP: ORC BIGINT SARGs regressed after Parquet PPD fixes
(HIVE-8122)
Key: HIVE-10164
URL: https://issues.apache.org/jira/browse/HIVE-10164
Project: Hive
Issue Type: Sub-task
Reporter: Gopal V
Assignee: Prasanth Jayachandran
HIVE-8122 seems to have introduced a toString() to the ORC PPD codepath for
BIGINT.
https://github.com/apache/hive/blob/trunk/ql/src/java/org/apache/hadoop/hive/ql/io/sarg/SearchArgumentImpl.java#L162
{code}
private List<Object> getOrcLiteralList() {
// no need to cast
...
List<Object> result = new ArrayList<Object>();
for (Object o : literalList) {
result.add(Long.valueOf(o.toString()));
}
return result;
}
{code}
!orc-sarg-tostring.png!
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)