This is an automated email from the ASF dual-hosted git repository.
qiaojialin pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-iotdb.git
The following commit(s) were added to refs/heads/master by this push:
new 98bfef4 [IOTDB-547] Fix typo for tsfile schema
new 5a5f36b Merge pull request #889 from vesense/patch-8
98bfef4 is described below
commit 98bfef4bed194e8fe8b36750b70d7c89e2f51295
Author: Xin Wang <[email protected]>
AuthorDate: Fri Mar 6 11:49:08 2020 +0800
[IOTDB-547] Fix typo for tsfile schema
---
.../java/org/apache/iotdb/tsfile/write/schema/MeasurementSchema.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/tsfile/src/main/java/org/apache/iotdb/tsfile/write/schema/MeasurementSchema.java
b/tsfile/src/main/java/org/apache/iotdb/tsfile/write/schema/MeasurementSchema.java
index 91d64f6..81e44f1 100644
---
a/tsfile/src/main/java/org/apache/iotdb/tsfile/write/schema/MeasurementSchema.java
+++
b/tsfile/src/main/java/org/apache/iotdb/tsfile/write/schema/MeasurementSchema.java
@@ -39,7 +39,7 @@ import org.apache.iotdb.tsfile.utils.ReadWriteIOUtils;
import org.apache.iotdb.tsfile.utils.StringContainer;
/**
- * This class describes a measurement's information registered in {@linkplain
Schema FilSchema},
+ * This class describes a measurement's information registered in {@linkplain
Schema FileSchema},
* including measurement id, data type, encoding and compressor type. For each
TSEncoding,
* MeasurementSchema maintains respective TSEncodingBuilder; For TSDataType,
only ENUM has
* TSDataTypeConverter up to now.