动态删除impala中的分区

zpqajqem  于 2021-06-26  发布在  Impala
关注(0)|答案(1)|浏览(871)

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)
7qhs6swi

7qhs6swi1#

遗憾的是,没有办法像您在示例中指定的那样动态删除分区。

相关问题