hdfs存储hive分区表时路径中包含batch_date=的问题

在hive中通过

insert overwrite table kk.table_name partition(batch_date=20211230)
select col1,col2,...
from kk.table_name
where batch_date=20211030;

复制指定分区数据到另一个分区
但在hdfs上发现这两个分区路径格式却不同,分别是


  • /hive/warehouse/kk.db/table_name/20211030
  • /hive/warehouse/kk.db/table_name/batch_date=20211230

请问一下,这样两个分区的路径,日期格式不一样
1.使用时会导致什么问题吗?
2.如何统一格式?

会导致存储不上