blob: b044c9d58d5c690c022d0bd6fc8b1eb63dbd4cf9 [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/kv1.txt' into table orc_test;