This is an automated email from the ASF dual-hosted git repository.
jackietien pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/tsfile.git
The following commit(s) were added to refs/heads/develop by this push:
new b0bbba6d add the time for enum ColumnCategory (#710)
b0bbba6d is described below
commit b0bbba6d9cb2a52273eb8f0ba61ed3ecfd61ac75
Author: alpass163 <[email protected]>
AuthorDate: Tue Jan 20 12:08:03 2026 +0800
add the time for enum ColumnCategory (#710)
---
java/common/src/main/java/org/apache/tsfile/enums/ColumnCategory.java | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git
a/java/common/src/main/java/org/apache/tsfile/enums/ColumnCategory.java
b/java/common/src/main/java/org/apache/tsfile/enums/ColumnCategory.java
index 83056ff3..3bfb8fd8 100644
--- a/java/common/src/main/java/org/apache/tsfile/enums/ColumnCategory.java
+++ b/java/common/src/main/java/org/apache/tsfile/enums/ColumnCategory.java
@@ -25,7 +25,8 @@ import java.util.List;
public enum ColumnCategory {
TAG,
FIELD,
- ATTRIBUTE;
+ ATTRIBUTE,
+ TIME;
public static List<ColumnCategory> nCopy(ColumnCategory type, int n) {
List<ColumnCategory> result = new ArrayList<>(n);