Details
-
Bug
-
Status: Resolved
-
Major
-
Resolution: Fixed
-
Impala 2.1
-
None
Description
Impala Query:
SELECT (t1.year) * (t1.year) AS int_col, t1.tinyint_col, COALESCE(t1.bigint_col, t1.bigint_col, t1.int_col) AS int_col_2 FROM alltypestiny t1 WHERE (t1.year) != (NULL)
Postgres Query:
SELECT (t1.year) * (t1.year) AS int_col, t1.tinyint_col, COALESCE(t1.bigint_col, t1.bigint_col, t1.int_col) AS int_col_2 FROM alltypestiny t1 WHERE (t1.year) != (NULL)
Number of rows returned by Impala: 8
Number of rows returned by Postgres: 0
DB: Functional
File Format: Text/None
git Hash: 09363ef