blob: 87985a68d785d2982024d8f74f5341c0a6b4465e [file] [log] [blame]
set hive.stats.column.autogather=true;
set hive.stats.autogather=true;
dfs ${system:test.dfs.mkdir} ${system:test.tmp.dir}/test1;
create external table test_custom(age int, name string) stored as orc location '/tmp/test1';
insert into test_custom select 1, 'test';
desc formatted test_custom age;
drop table test_custom;