[
https://issues.apache.org/jira/browse/HIVE-26102?focusedWorklogId=751460&page=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-751460
]
ASF GitHub Bot logged work on HIVE-26102:
-----------------------------------------
Author: ASF GitHub Bot
Created on: 01/Apr/22 09:04
Start Date: 01/Apr/22 09:04
Worklog Time Spent: 10m
Work Description: pvary commented on a change in pull request #3131:
URL: https://github.com/apache/hive/pull/3131#discussion_r840383938
##########
File path:
iceberg/iceberg-handler/src/main/java/org/apache/iceberg/mr/hive/HiveIcebergStorageHandler.java
##########
@@ -198,7 +206,10 @@ public void configureInputJobCredentials(TableDesc
tableDesc, Map<String, String
public void configureJobConf(TableDesc tableDesc, JobConf jobConf) {
setCommonJobConf(jobConf);
if (tableDesc != null && tableDesc.getProperties() != null &&
- tableDesc.getProperties().get(WRITE_KEY) != null) {
+ tableDesc.getProperties().get(InputFormatConfig.OPERATION_TYPE_PREFIX
+ tableDesc.getTableName()) != null) {
+ // set operation type into job conf too
+ jobConf.set(InputFormatConfig.OPERATION_TYPE_PREFIX +
tableDesc.getTableName(),
+
tableDesc.getProperties().getProperty(InputFormatConfig.OPERATION_TYPE_PREFIX +
tableDesc.getTableName()));
Review comment:
nit: Maybe just here, but it took me some time to put together what is
this :)
Basically:
```
String key = InputFormatConfig.OPERATION_TYPE_PREFIX +
tableDesc.getTableName();
if (tableDesc.getProperties().get(key) != null) {
jobConf.set(key, tableDesc.getProperties().get(key));
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
Issue Time Tracking
-------------------
Worklog Id: (was: 751460)
Time Spent: 40m (was: 0.5h)
> Implement DELETE statements for Iceberg tables
> ----------------------------------------------
>
> Key: HIVE-26102
> URL: https://issues.apache.org/jira/browse/HIVE-26102
> Project: Hive
> Issue Type: New Feature
> Reporter: Marton Bod
> Assignee: Marton Bod
> Priority: Major
> Labels: pull-request-available
> Time Spent: 40m
> Remaining Estimate: 0h
>
--
This message was sent by Atlassian Jira
(v8.20.1#820001)