You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iotdb.apache.org by ca...@apache.org on 2022/12/05 02:55:19 UTC

[iotdb] branch beyyes/format created (now 846b4020c0)

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

caogaofei pushed a change to branch beyyes/format
in repository https://gitbox.apache.org/repos/asf/iotdb.git


      at 846b4020c0 rename

This branch includes the following new commits:

     new 846b4020c0 rename

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



[iotdb] 01/01: rename

Posted by ca...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

caogaofei pushed a commit to branch beyyes/format
in repository https://gitbox.apache.org/repos/asf/iotdb.git

commit 846b4020c020f50c63f60a5622b35d50947cef88
Author: Beyyes <cg...@foxmail.com>
AuthorDate: Mon Dec 5 10:54:57 2022 +0800

    rename
---
 .../iotdb/db/mpp/common/header/ColumnHeaderConstant.java     | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/server/src/main/java/org/apache/iotdb/db/mpp/common/header/ColumnHeaderConstant.java b/server/src/main/java/org/apache/iotdb/db/mpp/common/header/ColumnHeaderConstant.java
index 3c788b8eaf..ae77933ddb 100644
--- a/server/src/main/java/org/apache/iotdb/db/mpp/common/header/ColumnHeaderConstant.java
+++ b/server/src/main/java/org/apache/iotdb/db/mpp/common/header/ColumnHeaderConstant.java
@@ -96,8 +96,8 @@ public class ColumnHeaderConstant {
   public static final String REGION_ID = "RegionId";
   public static final String TYPE = "Type";
   public static final String DATA_NODE_ID = "DataNodeId";
-  public static final String SERIES_SLOT_ID = "SeriesSlotId";
-  public static final String TIME_SLOT_ID = "TimeSlotId";
+  public static final String SERIES_SLOT_NUM = "SeriesSlotNum";
+  public static final String TIME_SLOT_NUM = "TimeSlotNum";
   public static final String ROLE = "Role";
 
   // column names for show datanodes
@@ -218,8 +218,8 @@ public class ColumnHeaderConstant {
           new ColumnHeader(TYPE, TSDataType.TEXT),
           new ColumnHeader(STATUS, TSDataType.TEXT),
           new ColumnHeader(DATABASE, TSDataType.TEXT),
-          new ColumnHeader(SERIES_SLOT_ID, TSDataType.INT32),
-          new ColumnHeader(TIME_SLOT_ID, TSDataType.INT64),
+          new ColumnHeader(SERIES_SLOT_NUM, TSDataType.INT32),
+          new ColumnHeader(TIME_SLOT_NUM, TSDataType.INT64),
           new ColumnHeader(DATA_NODE_ID, TSDataType.INT32),
           new ColumnHeader(RPC_ADDRESS, TSDataType.TEXT),
           new ColumnHeader(RPC_PORT, TSDataType.INT32),
@@ -319,10 +319,10 @@ public class ColumnHeaderConstant {
       ImmutableList.of(new ColumnHeader(REGION_ID, TSDataType.INT32));
 
   public static final List<ColumnHeader> getTimeSlotListColumnHeaders =
-      ImmutableList.of(new ColumnHeader(TIME_SLOT_ID, TSDataType.INT64));
+      ImmutableList.of(new ColumnHeader(TIME_SLOT_NUM, TSDataType.INT64));
 
   public static final List<ColumnHeader> getSeriesSlotListColumnHeaders =
-      ImmutableList.of(new ColumnHeader(SERIES_SLOT_ID, TSDataType.INT32));
+      ImmutableList.of(new ColumnHeader(SERIES_SLOT_NUM, TSDataType.INT32));
 
   public static final List<ColumnHeader> showContinuousQueriesColumnHeaders =
       ImmutableList.of(