W1y1r commented on code in PR #762:
URL: https://github.com/apache/iotdb-docs/pull/762#discussion_r2108122949
##########
src/zh/UserGuide/Master/Tree/Basic-Concept/Operate-Metadata_apache.md:
##########
@@ -359,17 +359,23 @@ CREATE DEVICE TEMPLATE <templateName> ALIGNED? '('
<measurementId> <attributeCla
**示例1:** 创建包含两个非对齐序列的元数据模板
```shell
-IoTDB> create device template t1 (temperature FLOAT encoding=RLE, status
BOOLEAN encoding=PLAIN compression=SNAPPY)
+IoTDB> create device template t1 (temperature FLOAT, status BOOLEAN)
```
**示例2:** 创建包含一组对齐序列的元数据模板
```shell
-IoTDB> create device template t2 aligned (lat FLOAT encoding=Gorilla, lon
FLOAT encoding=Gorilla)
+IoTDB> create device template t2 aligned (lat FLOAT, lon FLOAT)
```
其中,物理量 `lat` 和 `lon` 是对齐的。
+创建模板无需显式指定编码压缩方式,如需指定,可参考如下示例:
Review Comment:
在突出一下默认有编码压缩不需要指定吧
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]