Vikram Ahuja created HIVE-29098:
-----------------------------------

             Summary: Dataloss post migrating a partitioned table to iceberg
                 Key: HIVE-29098
                 URL: https://issues.apache.org/jira/browse/HIVE-29098
             Project: Hive
          Issue Type: Bug
            Reporter: Vikram Ahuja
            Assignee: Vikram Ahuja


Steps to reproduce:

drop table tbl_parquet;
create external table tbl_parquet(a int) partitioned by (b string) stored as 
parquet;
insert into table tbl_parquet partition (b='one') values (1);
insert into table tbl_parquet values (2,'');
select * from tbl_parquet;
alter table tbl_parquet convert to iceberg;
select * from tbl_parquet;



--
This message was sent by Atlassian Jira
(v8.20.10#820010)

Reply via email to