Fix exhaustive test run: Modify test to produce identical results on HBase.

Change-Id: I7187f9aca63f61ea1686820b3cbec277240da191
Reviewed-on: http://gerrit.sjc.cloudera.com:8080/4866
Reviewed-by: Dimitris Tsirogiannis <dtsirogiannis@cloudera.com>
Tested-by: jenkins
This commit is contained in:
Alex Behm
2014-10-15 14:40:54 -07:00
committed by ishaan
parent a4ee0a65f4
commit 7b6ecbeea5

View File

@@ -717,13 +717,14 @@ BIGINT
# Regression test for IMPALA-1348.
select count(*)
FROM alltypesagg t1
WHERE t1.int_col NOT IN
WHERE day IS NOT NULL
AND t1.int_col NOT IN
(SELECT tt1.month AS tinyint_col_1
FROM alltypesagg tt1
LEFT JOIN alltypestiny tt2 ON tt2.year = tt1.id
AND t1.bigint_col = tt2.smallint_col)
---- RESULTS
11000
10000
---- TYPES
BIGINT
====