Details
-
Sub-task
-
Status: Resolved
-
Major
-
Resolution: Invalid
-
None
-
None
-
None
-
None
Description
HIVE-8122 seems to have introduced a toString() to the ORC PPD codepath for BIGINT.
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; }