Github user chenliang613 commented on the issue:
https://github.com/apache/carbondata/pull/2334
@sv71294
i can also run successfully at current master with the below test case, so
not sure this test case can cover this issue which be fixed in the PR.
```
test("test the Timestamp greaterthan expression"){
val actualResult: List[Map[String, Any]] =
PrestoServer.executeQuery("SELECT DOB FROM TESTDB.TESTTABLE" +
"
WHERE DOB > timestamp '2016-01-01 00:00:00.0' order by DOB")
val expectedResult: List[Map[String, Any]] = List(
Map("DOB" -> new Timestamp(new
java.util.Date(2016-1900,1-1,14,15,7,9).getTime)),
Map("DOB" -> new Timestamp(new
java.util.Date(2016-1900,4-1,14,15,0,9).getTime)))
assert(actualResult.equals(expectedResult))
}
```
---