Github user geetikagupta16 commented on a diff in the pull request:
https://github.com/apache/carbondata/pull/1459#discussion_r148998311
--- Diff: integration/presto/src/main/java/org/apache/carbondata/presto/PrestoFilterUtil.java ---
@@ -258,6 +258,8 @@ else if (type instanceof DecimalType) {
return new BigDecimal(new BigInteger(String.valueOf(rawdata)),
((DecimalType) type).getScale());
}
+ } else if (type.equals(TimestampType.TIMESTAMP)) {
--- End diff --
Here I am comparing the type with Presto's datatypes that's why I have used `TimestampType.TIMESTAMP`
---