You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iotdb.apache.org by xi...@apache.org on 2022/11/21 10:23:32 UTC

[iotdb] 01/01: Delete useless class SchemaRegion defined in MPP

This is an automated email from the ASF dual-hosted git repository.

xingtanzjr pushed a commit to branch xingtanzjr/delete_useless_code
in repository https://gitbox.apache.org/repos/asf/iotdb.git

commit ca46ec366afc72684305f38600b7e7367d0fae0b
Author: Jinrui.Zhang <xi...@gmail.com>
AuthorDate: Mon Nov 21 18:23:17 2022 +0800

    Delete useless class SchemaRegion defined in MPP
---
 .../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;
-}