[
https://issues.apache.org/jira/browse/HIVE-27627?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17762015#comment-17762015
]
Sourabh Badhya commented on HIVE-27627:
---------------------------------------
Thanks [~kkasa] for the review.
> Iceberg: Insert into/overwrite partition support
> ------------------------------------------------
>
> Key: HIVE-27627
> URL: https://issues.apache.org/jira/browse/HIVE-27627
> Project: Hive
> Issue Type: New Feature
> Reporter: Sourabh Badhya
> Assignee: Sourabh Badhya
> Priority: Major
> Labels: pull-request-available
>
> Support inserting data in the following query types -
> Inserting data via static partition -
> {code:java}
> INSERT INTO|OVERWRITE TABLE tableName PARTITION(pCol = pColValue) VALUES
> (...);
> INSERT INTO|OVERWRITE TABLE tableName PARTITION(pCol = pColValue) SELECT
> query;{code}
> Inserting data via dynamic partitioning -
> {code:java}
> INSERT INTO|OVERWRITE TABLE tableName PARTITION(pCol) VALUES (...);
> INSERT INTO|OVERWRITE TABLE tableName PARTITION(pCol) SELECT query; {code}
> Inserting data via static and dynamic partitioning with static partitioning
> coming at the beginning -
> {code:java}
> INSERT INTO|OVERWRITE TABLE tableName PARTITION(pCol1 = pColValue, pCol2)
> VALUES (...);
> INSERT INTO|OVERWRITE TABLE tableName PARTITION(pCol1 = pColValue, pCol2)
> SELECT query;{code}
--
This message was sent by Atlassian Jira
(v8.20.10#820010)