This is an automated email from the ASF dual-hosted git repository. hui pushed a commit to branch ml/windowSet in repository https://gitbox.apache.org/repos/asf/iotdb.git
commit 01128d2215545b982d12c980d89db6d606864731 Author: Minghui Liu <[email protected]> AuthorDate: Mon Oct 31 16:47:52 2022 +0800 add interface fetchWindowSet in TSServiceImpl & ClientRPCServiceImpl --- .../apache/iotdb/db/service/thrift/impl/ClientRPCServiceImpl.java | 7 +++++++ .../org/apache/iotdb/db/service/thrift/impl/TSServiceImpl.java | 7 +++++++ 2 files changed, 14 insertions(+) diff --git a/server/src/main/java/org/apache/iotdb/db/service/thrift/impl/ClientRPCServiceImpl.java b/server/src/main/java/org/apache/iotdb/db/service/thrift/impl/ClientRPCServiceImpl.java index e26c4e603f..b3d6f41230 100644 --- a/server/src/main/java/org/apache/iotdb/db/service/thrift/impl/ClientRPCServiceImpl.java +++ b/server/src/main/java/org/apache/iotdb/db/service/thrift/impl/ClientRPCServiceImpl.java @@ -70,6 +70,8 @@ import org.apache.iotdb.metrics.utils.MetricLevel; import org.apache.iotdb.rpc.RpcUtils; import org.apache.iotdb.rpc.TSStatusCode; import org.apache.iotdb.service.rpc.thrift.ServerProperties; +import org.apache.iotdb.service.rpc.thrift.TFetchWindowSetReq; +import org.apache.iotdb.service.rpc.thrift.TFetchWindowSetResp; import org.apache.iotdb.service.rpc.thrift.TSAppendSchemaTemplateReq; import org.apache.iotdb.service.rpc.thrift.TSCancelOperationReq; import org.apache.iotdb.service.rpc.thrift.TSCloseOperationReq; @@ -418,6 +420,11 @@ public class ClientRPCServiceImpl implements IClientRPCServiceWithHandler { } } + @Override + public TFetchWindowSetResp fetchWindowSet(TFetchWindowSetReq req) throws TException { + return null; + } + @Override public TSOpenSessionResp openSession(TSOpenSessionReq req) throws TException { IoTDBConstant.ClientVersion clientVersion = parseClientVersion(req); diff --git a/server/src/main/java/org/apache/iotdb/db/service/thrift/impl/TSServiceImpl.java b/server/src/main/java/org/apache/iotdb/db/service/thrift/impl/TSServiceImpl.java index 72f1112c71..06ef9eec23 100644 --- a/server/src/main/java/org/apache/iotdb/db/service/thrift/impl/TSServiceImpl.java +++ b/server/src/main/java/org/apache/iotdb/db/service/thrift/impl/TSServiceImpl.java @@ -85,6 +85,8 @@ import org.apache.iotdb.rpc.RedirectException; import org.apache.iotdb.rpc.RpcUtils; import org.apache.iotdb.rpc.TSStatusCode; import org.apache.iotdb.service.rpc.thrift.ServerProperties; +import org.apache.iotdb.service.rpc.thrift.TFetchWindowSetReq; +import org.apache.iotdb.service.rpc.thrift.TFetchWindowSetResp; import org.apache.iotdb.service.rpc.thrift.TSAppendSchemaTemplateReq; import org.apache.iotdb.service.rpc.thrift.TSCancelOperationReq; import org.apache.iotdb.service.rpc.thrift.TSCloseOperationReq; @@ -276,6 +278,11 @@ public class TSServiceImpl implements IClientRPCServiceWithHandler { return null; } + @Override + public TFetchWindowSetResp fetchWindowSet(TFetchWindowSetReq req) throws TException { + return null; + } + @Override public TSOpenSessionResp openSession(TSOpenSessionReq req) throws TException { IoTDBConstant.ClientVersion clientVersion = parseClientVersion(req);
