Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -587,7 +587,7 @@ In a scenario where measurements need to be added, you can modify the template
The SQL Statement for altering device template is as follow:

```shell
IoTDB> alter device template t1 add (speed FLOAT, FLOAT TEXT)
IoTDB> alter device template t1 add (speed FLOAT)
```

**When executing data insertion to devices with device template set on related prefix path and there are measurements not present in this device template, the measurements will be auto added to this device template.**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -588,7 +588,7 @@ In a scenario where measurements need to be added, you can modify the template
The SQL Statement for altering device template is as follow:

```shell
IoTDB> alter device template t1 add (speed FLOAT, FLOAT TEXT)
IoTDB> alter device template t1 add (speed FLOAT)
```

**When executing data insertion to devices with device template set on related prefix path and there are measurements not present in this device template, the measurements will be auto added to this device template.**
Expand Down
2 changes: 1 addition & 1 deletion src/UserGuide/Master/Tree/SQL-Manual/SQL-Manual.md
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ IoTDB> drop device template t1
### 2.8 Alter Device Template

```sql
IoTDB> alter device template t1 add (speed FLOAT, FLOAT TEXT)
IoTDB> alter device template t1 add (speed FLOAT)
```

## 3. TIMESERIES MANAGEMENT
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -580,7 +580,7 @@ In a scenario where measurements need to be added, you can modify the template
The SQL Statement for altering device template is as follow:

```shell
IoTDB> alter device template t1 add (speed FLOAT encoding=RLE, FLOAT TEXT encoding=PLAIN compression=SNAPPY)
IoTDB> alter device template t1 add (speed FLOAT encoding=RLE)
```

**When executing data insertion to devices with device template set on related prefix path and there are measurements not present in this device template, the measurements will be auto added to this device template.**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -581,7 +581,7 @@ In a scenario where measurements need to be added, you can modify the template
The SQL Statement for altering device template is as follow:

```shell
IoTDB> alter device template t1 add (speed FLOAT encoding=RLE, FLOAT TEXT encoding=PLAIN compression=SNAPPY)
IoTDB> alter device template t1 add (speed FLOAT encoding=RLE)
```

**When executing data insertion to devices with device template set on related prefix path and there are measurements not present in this device template, the measurements will be auto added to this device template.**
Expand Down
2 changes: 1 addition & 1 deletion src/UserGuide/V1.3.x/SQL-Manual/SQL-Manual.md
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ IoTDB> drop device template t1
### Alter Device Template

```sql
IoTDB> alter device template t1 add (speed FLOAT encoding=RLE, FLOAT TEXT encoding=PLAIN compression=SNAPPY)
IoTDB> alter device template t1 add (speed FLOAT encoding=RLE)
```

## TIMESERIES MANAGEMENT
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -580,7 +580,7 @@ In a scenario where measurements need to be added, you can modify the template
The SQL Statement for altering device template is as follow:

```shell
IoTDB> alter device template t1 add (speed FLOAT encoding=RLE, FLOAT TEXT encoding=PLAIN compression=SNAPPY)
IoTDB> alter device template t1 add (speed FLOAT encoding=RLE)
```

**When executing data insertion to devices with device template set on related prefix path and there are measurements not present in this device template, the measurements will be auto added to this device template.**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -581,7 +581,7 @@ In a scenario where measurements need to be added, you can modify the template
The SQL Statement for altering device template is as follow:

```shell
IoTDB> alter device template t1 add (speed FLOAT encoding=RLE, FLOAT TEXT encoding=PLAIN compression=SNAPPY)
IoTDB> alter device template t1 add (speed FLOAT encoding=RLE)
```

**When executing data insertion to devices with device template set on related prefix path and there are measurements not present in this device template, the measurements will be auto added to this device template.**
Expand Down
2 changes: 1 addition & 1 deletion src/UserGuide/dev-1.3/SQL-Manual/SQL-Manual.md
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ IoTDB> drop device template t1
### Alter Device Template

```sql
IoTDB> alter device template t1 add (speed FLOAT encoding=RLE, FLOAT TEXT encoding=PLAIN compression=SNAPPY)
IoTDB> alter device template t1 add (speed FLOAT encoding=RLE)
```

## TIMESERIES MANAGEMENT
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -587,7 +587,7 @@ In a scenario where measurements need to be added, you can modify the template
The SQL Statement for altering device template is as follow:

```shell
IoTDB> alter device template t1 add (speed FLOAT, FLOAT TEXT)
IoTDB> alter device template t1 add (speed FLOAT)
```

**When executing data insertion to devices with device template set on related prefix path and there are measurements not present in this device template, the measurements will be auto added to this device template.**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -588,7 +588,7 @@ In a scenario where measurements need to be added, you can modify the template
The SQL Statement for altering device template is as follow:

```shell
IoTDB> alter device template t1 add (speed FLOAT, FLOAT TEXT)
IoTDB> alter device template t1 add (speed FLOAT)
```

**When executing data insertion to devices with device template set on related prefix path and there are measurements not present in this device template, the measurements will be auto added to this device template.**
Expand Down
2 changes: 1 addition & 1 deletion src/UserGuide/latest/SQL-Manual/SQL-Manual.md
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ IoTDB> drop device template t1
### 2.8 Alter Device Template

```sql
IoTDB> alter device template t1 add (speed FLOAT, FLOAT TEXT)
IoTDB> alter device template t1 add (speed FLOAT)
```

## 3. TIMESERIES MANAGEMENT
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -569,7 +569,7 @@ IoTDB> drop device template t1
修改设备模板的 SQL 语句如下所示:

```shell
IoTDB> alter device template t1 add (speed FLOAT, FLOAT TEXT)
IoTDB> alter device template t1 add (speed FLOAT)
```

**向已挂载模板的路径下的设备中写入数据,若写入请求中的物理量不在模板中,将自动扩展模板。**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -569,7 +569,7 @@ IoTDB> drop device template t1
修改设备模板的 SQL 语句如下所示:

```shell
IoTDB> alter device template t1 add (speed FLOAT, FLOAT TEXT)
IoTDB> alter device template t1 add (speed FLOAT)
```

**向已挂载模板的路径下的设备中写入数据,若写入请求中的物理量不在模板中,将自动扩展模板。**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -563,7 +563,7 @@ IoTDB> drop device template t1
修改设备模板的 SQL 语句如下所示:

```shell
IoTDB> alter device template t1 add (speed FLOAT encoding=RLE, FLOAT TEXT encoding=PLAIN compression=SNAPPY)
IoTDB> alter device template t1 add (speed FLOAT encoding=RLE)
```

**向已挂载模板的路径下的设备中写入数据,若写入请求中的物理量不在模板中,将自动扩展模板。**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -562,7 +562,7 @@ IoTDB> drop device template t1
修改设备模板的 SQL 语句如下所示:

```shell
IoTDB> alter device template t1 add (speed FLOAT encoding=RLE, FLOAT TEXT encoding=PLAIN compression=SNAPPY)
IoTDB> alter device template t1 add (speed FLOAT encoding=RLE)
```

**向已挂载模板的路径下的设备中写入数据,若写入请求中的物理量不在模板中,将自动扩展模板。**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -563,7 +563,7 @@ IoTDB> drop device template t1
修改设备模板的 SQL 语句如下所示:

```shell
IoTDB> alter device template t1 add (speed FLOAT encoding=RLE, FLOAT TEXT encoding=PLAIN compression=SNAPPY)
IoTDB> alter device template t1 add (speed FLOAT encoding=RLE)
```

**向已挂载模板的路径下的设备中写入数据,若写入请求中的物理量不在模板中,将自动扩展模板。**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -562,7 +562,7 @@ IoTDB> drop device template t1
修改设备模板的 SQL 语句如下所示:

```shell
IoTDB> alter device template t1 add (speed FLOAT encoding=RLE, FLOAT TEXT encoding=PLAIN compression=SNAPPY)
IoTDB> alter device template t1 add (speed FLOAT encoding=RLE)
```

**向已挂载模板的路径下的设备中写入数据,若写入请求中的物理量不在模板中,将自动扩展模板。**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -570,7 +570,7 @@ IoTDB> drop device template t1
修改设备模板的 SQL 语句如下所示:

```shell
IoTDB> alter device template t1 add (speed FLOAT, FLOAT TEXT)
IoTDB> alter device template t1 add (speed FLOAT)
```

**向已挂载模板的路径下的设备中写入数据,若写入请求中的物理量不在模板中,将自动扩展模板。**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -569,7 +569,7 @@ IoTDB> drop device template t1
修改设备模板的 SQL 语句如下所示:

```shell
IoTDB> alter device template t1 add (speed FLOAT, FLOAT TEXT)
IoTDB> alter device template t1 add (speed FLOAT)
```

**向已挂载模板的路径下的设备中写入数据,若写入请求中的物理量不在模板中,将自动扩展模板。**
Expand Down