Files
impala/testdata/workloads/functional-query/queries/DataErrorsTest/hbase-insert-errors.test
ishaan 8369c3b13b Remove explicit references to functional_hbase tables from .test files.
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
2015-02-23 23:32:41 +00:00

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.
====