blob: 9132ea2714139f6f15c304861c24339d20f292ad [file] [log] [blame]
set hive.fetch.task.conversion=none;
create table test_table_n7(d date);
insert into test_table_n7 values(null), (null), (null);
analyze table test_table_n7 compute statistics for columns;
describe formatted test_table_n7;
explain select * from test_table_n7 where d is not null;
select * from test_table_n7 where d is not null;