This is an automated email from the ASF dual-hosted git repository.
haonan 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 a424df0191 Delete useless class SchemaRegion defined in MPP (#8072)
a424df0191 is described below
commit a424df019165ea080050c7c8a6d1efdfb5093742
Author: Zhang.Jinrui <[email protected]>
AuthorDate: Mon Nov 21 18:42:35 2022 +0800
Delete useless class SchemaRegion defined in MPP (#8072)
---
.../apache/iotdb/db/mpp/common/SchemaRegion.java | 29 ----------------------
1 file changed, 29 deletions(-)
diff --git
a/server/src/main/java/org/apache/iotdb/db/mpp/common/SchemaRegion.java
b/server/src/main/java/org/apache/iotdb/db/mpp/common/SchemaRegion.java
deleted file mode 100644
index a7ffe29a90..0000000000
--- a/server/src/main/java/org/apache/iotdb/db/mpp/common/SchemaRegion.java
+++ /dev/null
@@ -1,29 +0,0 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-package org.apache.iotdb.db.mpp.common;
-
-/**
- * This class is used to represent the schema partition info including the
DataRegionId and physical
- * node IP address
- */
-// TODO: (xingtanzjr) This class should be substituted with the class defined
in Consensus level
-public class SchemaRegion {
- private Integer DataRegionId;
- private String endpoint;
-}