mirror of
https://github.com/apache/impala.git
synced 2026-01-02 12:00:33 -05:00
Additionally, this patch also disabled the hbase/none test dimension if the TARGET_FILESYSTEM environment variable is set to either s3 of isilon. Change-Id: I63aecaa478d2ba9eb68de729e9640071359a2eeb Reviewed-on: http://gerrit.cloudera.org:8080/74 Reviewed-by: Dan Hecht <dhecht@cloudera.com> Tested-by: Internal Jenkins
15 lines
481 B
Plaintext
15 lines
481 B
Plaintext
====
|
|
---- QUERY
|
|
insert into alltypessmall
|
|
values (NULL,80,false,"02/01/09",80.8,8.800000190734863,8,2,8,"8","2009-02-01 00:08:00.280000000",8,2009)
|
|
---- ERRORS
|
|
Cannot insert into HBase with a null row key.
|
|
====
|
|
---- QUERY
|
|
insert into alltypessmall
|
|
select case when id >= 0 then NULL else 999 end,80,false,"02/01/09",80.8,8.800000190734863,8,2,8,"8","2009-02-01 00:08:00.280000000",8,2009
|
|
from functional.alltypessmall
|
|
---- ERRORS
|
|
Cannot insert into HBase with a null row key.
|
|
====
|