pvary commented on a change in pull request #1095:
URL: https://github.com/apache/hive/pull/1095#discussion_r439068017
##########
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:
If I understand correctly this is also only relevant for the
optimization. Could we also put this into another jira?
----------------------------------------------------------------
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]