This is an automated email from the ASF dual-hosted git repository.
jackietien pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/iotdb.git
The following commit(s) were added to refs/heads/master by this push:
new af2c5ee51ff [IOTDB-6171] Implement getRegionReplicaSet method of
QueryExecutor
af2c5ee51ff is described below
commit af2c5ee51ff662608b6c97e3bc5f3c346900202e
Author: Weihao Li <[email protected]>
AuthorDate: Thu Oct 19 10:42:16 2023 +0800
[IOTDB-6171] Implement getRegionReplicaSet method of QueryExecutor
---
.../main/java/org/apache/iotdb/commons/partition/QueryExecutor.java | 6 ++++++
1 file changed, 6 insertions(+)
diff --git
a/iotdb-core/node-commons/src/main/java/org/apache/iotdb/commons/partition/QueryExecutor.java
b/iotdb-core/node-commons/src/main/java/org/apache/iotdb/commons/partition/QueryExecutor.java
index 55439beffd8..4255c3955d8 100644
---
a/iotdb-core/node-commons/src/main/java/org/apache/iotdb/commons/partition/QueryExecutor.java
+++
b/iotdb-core/node-commons/src/main/java/org/apache/iotdb/commons/partition/QueryExecutor.java
@@ -20,6 +20,7 @@
package org.apache.iotdb.commons.partition;
import org.apache.iotdb.common.rpc.thrift.TDataNodeLocation;
+import org.apache.iotdb.common.rpc.thrift.TRegionReplicaSet;
import java.util.Objects;
@@ -41,6 +42,11 @@ public class QueryExecutor implements ExecutorType {
return false;
}
+ @Override
+ public TRegionReplicaSet getRegionReplicaSet() {
+ return null;
+ }
+
@Override
public boolean equals(Object o) {
if (this == o) return true;