blob: 91366c2c1898de50cec786204edaf4828642c489 [file] [log] [blame]
--! qt:dataset:srcpart
set hive.archive.enabled = true;
-- Tests trying to archive a partition twice.
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';
INSERT OVERWRITE TABLE tstsrcpart PARTITION (ds='2008-04-08', hr='12')
SELECT key, value FROM srcpart WHERE ds='2008-04-08' AND hr='12';
ALTER TABLE tstsrcpart ARCHIVE PARTITION (ds='2008-04-08');
ALTER TABLE tstsrcpart ARCHIVE PARTITION (ds='2008-04-08');