mirror of
https://github.com/apache/impala.git
synced 2026-01-09 15:00:11 -05:00
16 lines
490 B
Plaintext
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.
|
|
====
|