kishendas commented on a change in pull request #1095:
URL: https://github.com/apache/hive/pull/1095#discussion_r439256315



##########
File path: 
standalone-metastore/metastore-common/src/main/java/org/apache/hadoop/hive/metastore/HiveMetaStoreClient.java
##########
@@ -4259,6 +4261,15 @@ public void 
scheduledQueryProgress(ScheduledQueryProgressInfo info) throws TExce
     client.scheduled_query_progress(info);
   }
 
+  @Override
+  public void setValidWriteIdList(String txnWriteIdListStr) {
+    this.txnWriteIdList = (txnWriteIdListStr == null ? null : new 
ValidTxnWriteIdList(txnWriteIdListStr));
+  }
+
+  @Override public void clearValidWriteIdList() {
+    this.txnWriteIdList = null;
+  }
+

Review comment:
       I did create separate subtasks, but after internal discussions, I 
decided to club the changes, as they are closely related and work together to 
provide cache consistency. 




----------------------------------------------------------------
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.

For queries about this service, please contact Infrastructure at:
[email protected]



---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to