Impala允许动态添加分区,如下所示。
insert into table1 partition (part_col1="merged",part_col2,part_col3)
select col1,col2,col3,part_col2,part_col3 from table2 where
col="SomeValue"
因此它将根据select查询的结果添加多个分区。但是当删除分区时似乎没有等效。在那儿 ?您必须显式指定要删除的分区。
alter table table1 drop
partition(part_col1="A",part_col2="B",part_col3="C")
我不能只说像
这样的话alter table table1 drop partition(part_col1="A",part_col2,part_col3)
答案 0 :(得分:0)
不幸的是,无法像您在示例中指定的那样动态删除分区。