Madhava Carrillo
Madhava Carrillo

Reputation: 4378

User ALTER TABLE ... CONCATENATE with partial matching partitions in Hive

I want to use the ALTER TABLE ... CONCATENATE functionality in Hive, but it seems I have to give exact partition name. For example I have a table with two partition columns, date and group. I'd like to be able to do something like this:

alter table mytable partition (insert_date='2017-04-11',group='%') CONCATENATE;

But i can't find the way of doing it.

Upvotes: 0

Views: 849

Answers (1)

Madhava Carrillo
Madhava Carrillo

Reputation: 4378

Concatenate doesn't support this.

Upvotes: 1

Related Questions