Details
-
Bug
-
Status: Resolved
-
Blocker
-
Resolution: Fixed
-
Impala 2.3.0
-
None
Description
Impala returns incorrect result when the following query is executed:
select CAST('2011-02-28 00:00:00' as TIMESTAMP) + INTERVAL '1' YEAR as stamp;
Impala result:
2012-02-29 00:00:00
Postgres result:
2012-02-28 00:00:00