mirror of
https://github.com/apache/impala.git
synced 2025-12-31 15:00:10 -05:00
27 lines
490 B
Plaintext
27 lines
490 B
Plaintext
insert overwrite table nullinsert$TABLE
|
|
select NULL, "", "NULL", "\\N", NULL from alltypes limit 1
|
|
---- SETUP
|
|
RESET nullinsert$TABLE
|
|
---- RESULTS
|
|
---- PARTITIONS
|
|
/: 1
|
|
====
|
|
select * from nullinsert$TABLE
|
|
---- SETUP
|
|
RELOAD nullinsert$TABLE
|
|
---- TYPES
|
|
string, string, string, string, int
|
|
---- PARTITIONS
|
|
---- RESULTS
|
|
'NULL','','NULL','\N',NULL
|
|
====
|
|
select * from alt_nullinsert$TABLE
|
|
---- SETUP
|
|
RELOAD alt_nullinsert$TABLE
|
|
---- TYPES
|
|
string
|
|
---- PARTITIONS
|
|
---- RESULTS
|
|
'\N,,NULL,\\N,\N'
|
|
====
|