[
https://issues.apache.org/jira/browse/HIVE-28719?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Dmitriy Fingerman updated HIVE-28719:
-------------------------------------
Labels: hive-4.2.0-candidate (was: )
> INSERT INTO partition might clear partition level serde properties
> ------------------------------------------------------------------
>
> Key: HIVE-28719
> URL: https://issues.apache.org/jira/browse/HIVE-28719
> Project: Hive
> Issue Type: Bug
> Reporter: László Bodor
> Priority: Major
> Labels: hive-4.2.0-candidate
>
> {code}
> create table t (a string, b string) partitioned by (p string) stored as
> textfile;
> alter table t add partition (p="p");
> alter table t partition (p="p") set serdeproperties('field.delim' = ',');
> describe formatted t partition (p="p");
> insert into t partition (p="p") values (1, 2);
> describe formatted t partition (p="p");
> {code}
> first describe:
> {code}
> # Detailed Partition Information
> ...
> Storage Desc Params:
> field.delim ,
> serialization.format 1
> {code}
> second describe:
> {code}
> Storage Desc Params:
> serialization.format 1
> {code}
> find repro here:
> https://github.com/abstractdog/hive/commit/cb035ecf2f92e2788f2665df5c739c1e79bc4f54
--
This message was sent by Atlassian Jira
(v8.20.10#820010)