DROP TABLE IF EXISTS table_complex_type; CREATE TABLE table_complex_type ( a STRING, b ARRAY, c ARRAY>, d MAP> ) STORED AS TEXTFILE; LOAD DATA LOCAL INPATH '../data/files/create_nested_type.txt' OVERWRITE INTO TABLE table_complex_type; explain analyze table table_complex_type compute statistics for columns d; analyze table table_complex_type compute statistics for columns d;