Details
-
Bug
-
Status: Resolved
-
Critical
-
Resolution: Fixed
-
Impala 2.3.0
-
None
Description
Impala returns incorrect result when the following query is executed:
select CAST('2012-02-29 00:00:00' as TIMESTAMP) + INTERVAL 1 MONTH as stamp;
Impala Result:
+---------------------+ | stamp | +---------------------+ | 2012-03-31 00:00:00 | +---------------------+
Postgres Result:
stamp --------------------- 2012-03-29 00:00:00 (1 row)