blob: 9a4116e8219184dd431135cd08ca76ed0b205e0b [file] [log] [blame]
create table text_test (userid bigint, string1 string, subtype double, decimal1 decimal, ts timestamp);
load data local inpath '../../data/files/kv1.txt' into table text_test;
set hive.default.fileformat=ORC;
create table orc_test (userid bigint, string1 string, subtype double, decimal1 decimal, ts timestamp);
load data inpath '${hiveconf:hive.metastore.warehouse.dir}/text_test/' into table orc_test;