blob: 1e5d151f286ba593e46c254a65407fc616cd318e [file] [log] [blame]
create table abc(strct struct<a:int, b:string, c:string>)
row format delimited
fields terminated by '\t'
collection items terminated by '\001';
load data local inpath '../../data/files/kv1.txt'
overwrite into table abc;
SELECT strct, strct.a, strct.b FROM abc LIMIT 10;