blob: 0c3d64e961333233a7683e17ecab2d9f16477a5e [file] [log] [blame]
set hive.execution.mode=llap;
set hive.llap.execution.mode=all;
CREATE temporary TABLE ${hiveconf:hiveLlapServiceCheck} (name VARCHAR(64), age INT)
CLUSTERED BY (age) INTO 2 BUCKETS STORED AS ORC;
INSERT INTO TABLE ${hiveconf:hiveLlapServiceCheck}
VALUES ('fred flintstone', 35), ('barney rubble', 32);
select count(1) from ${hiveconf:hiveLlapServiceCheck};