==== ---- QUERY # Test that we properly write null values to text tables. insert overwrite table nullinsert$TABLE select NULL, "", "NULL", "\\N", NULL from alltypes limit 1 ---- SETUP RESET nullinsert$TABLE ---- RESULTS ---- PARTITIONS /: 1 ==== ---- QUERY select * from nullinsert$TABLE ---- SETUP RELOAD nullinsert$TABLE ---- TYPES string, string, string, string, int ---- RESULTS 'NULL','','NULL','\N',NULL ==== ---- QUERY select * from alt_nullinsert$TABLE ---- SETUP RELOAD alt_nullinsert$TABLE ---- TYPES string ---- RESULTS '\N,,NULL,\\N,\N' ====