blob: 9f342c9d0e7d51fb33a22154ff2bd5f7b30940cf [file] [log] [blame]
--! qt:dataset:srcpart
set hive.archive.enabled = true;
-- Tests trying to unarchive a non-archived partition group
drop table tstsrcpart;
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 UNARCHIVE PARTITION (ds='2008-04-08', hr='12');