Files
impala/testdata/workloads/functional-query/queries/DataErrorsTest/hbase-insert-errors.test
2014-01-08 10:50:57 -08:00

16 lines
490 B
Plaintext

====
---- QUERY
insert into functional.hbasealltypessmall values(NULL, true, 90.0, 5.5, 0, 1, 2, 3, "04/02/09", '2',
"2009-04-03 00:23:00.930000000")
---- ERRORS
Cannot insert into HBase with a null row key.
====
---- QUERY
insert into functional.hbasealltypessmall
select case when id >= 0 then NULL else 999 end, true, 90.0, 5.5, 0, 1, 2, 3, "04/02/09",
'2', "2009-04-03 00:23:00.930000000"
from functional.alltypessmall
---- ERRORS
Cannot insert into HBase with a null row key.
====