FangBO created HIVE-28757:
-----------------------------
Summary: The inserted dynamic partitions loss createTime
Key: HIVE-28757
URL: https://issues.apache.org/jira/browse/HIVE-28757
Project: Hive
Issue Type: Bug
Components: Metastore
Affects Versions: 3.1.3
Reporter: FangBO
Attachments: image.png
The inserted dynamic partitions loss createTime。
{code:java}
// code placeholder
create table p (id bigint) partitioned by (ds string);
create table src (id bigint, ds string);
insert into src values(1, '00');
insert overwrite table p partition(ds) select id,ds from src;{code}
After the operation, the inserted partition does not have createTime.
--
This message was sent by Atlassian Jira
(v8.20.10#820010)