Sourabh Badhya created HIVE-27627:
-------------------------------------

             Summary: 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


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)

Reply via email to