blob: db7f392737e973cd19e0855e8903933ef69986d5 [file] [log] [blame]
set hive.archive.enabled = true;
-- Tests trying to archive a partition group with custom locations.
-- EXCLUDE_HADOOP_MAJOR_VERSIONS(0.17, 0.18, 0.19)
CREATE TABLE tstsrcpart LIKE srcpart;
INSERT OVERWRITE TABLE tstsrcpart PARTITION (ds='2008-04-08', hr='11')
SELECT key, value FROM srcpart WHERE ds='2008-04-08' AND hr='11';
ALTER TABLE tstsrcpart ADD PARTITION (ds='2008-04-08', hr='12')
LOCATION "${system:test.tmp.dir}/tstsrc";
ALTER TABLE tstsrcpart ARCHIVE PARTITION (ds='2008-04-08');