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)
1条答案
按热度按时间7qhs6swi1#
遗憾的是,没有办法像您在示例中指定的那样动态删除分区。