Skip to content

Commit 5fa1ad2

Browse files
authored
fix data isnert description about text (#1113)
1 parent c3925e4 commit 5fa1ad2

12 files changed

Lines changed: 18 additions & 18 deletions

File tree

src/UserGuide/Master/Tree/Basic-Concept/Write-Data_apache.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ The sample code for single column data insertion is as follows:
3939

4040
```
4141
IoTDB > insert into root.ln.wf02.wt02(timestamp,status) values(1,true)
42-
IoTDB > insert into root.ln.wf02.wt02(timestamp,hardware) values(1, 'v1')
42+
IoTDB > insert into root.ln.wf02.wt02(timestamp,hardware) values(1, "v1")
4343
```
4444

4545
The above example code inserts the long integer timestamp and the value "true" into the timeseries `root.ln.wf02.wt02.status` and inserts the long integer timestamp and the value "v1" into the timeseries `root.ln.wf02.wt02.hardware`. When the execution is successful, cost time is shown to indicate that the data insertion has been completed.

src/UserGuide/Master/Tree/Basic-Concept/Write-Data_timecho.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ The sample code for single column data insertion is as follows:
3939

4040
```
4141
IoTDB > insert into root.ln.wf02.wt02(timestamp,status) values(1,true)
42-
IoTDB > insert into root.ln.wf02.wt02(timestamp,hardware) values(1, 'v1')
42+
IoTDB > insert into root.ln.wf02.wt02(timestamp,hardware) values(1, "v1")
4343
```
4444

4545
The above example code inserts the long integer timestamp and the value "true" into the timeseries `root.ln.wf02.wt02.status` and inserts the long integer timestamp and the value "v1" into the timeseries `root.ln.wf02.wt02.hardware`. When the execution is successful, cost time is shown to indicate that the data insertion has been completed.

src/UserGuide/V1.3.x/Basic-Concept/Write-Data.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ The sample code for single column data insertion is as follows:
3939

4040
```
4141
IoTDB > insert into root.ln.wf02.wt02(timestamp,status) values(1,true)
42-
IoTDB > insert into root.ln.wf02.wt02(timestamp,hardware) values(1, 'v1')
42+
IoTDB > insert into root.ln.wf02.wt02(timestamp,hardware) values(1, "v1")
4343
```
4444

4545
The above example code inserts the long integer timestamp and the value "true" into the timeseries `root.ln.wf02.wt02.status` and inserts the long integer timestamp and the value "v1" into the timeseries `root.ln.wf02.wt02.hardware`. When the execution is successful, cost time is shown to indicate that the data insertion has been completed.

src/UserGuide/dev-1.3/Basic-Concept/Write-Data.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ The sample code for single column data insertion is as follows:
3939

4040
```
4141
IoTDB > insert into root.ln.wf02.wt02(timestamp,status) values(1,true)
42-
IoTDB > insert into root.ln.wf02.wt02(timestamp,hardware) values(1, 'v1')
42+
IoTDB > insert into root.ln.wf02.wt02(timestamp,hardware) values(1, "v1")
4343
```
4444

4545
The above example code inserts the long integer timestamp and the value "true" into the timeseries `root.ln.wf02.wt02.status` and inserts the long integer timestamp and the value "v1" into the timeseries `root.ln.wf02.wt02.hardware`. When the execution is successful, cost time is shown to indicate that the data insertion has been completed.

src/UserGuide/latest/Basic-Concept/Write-Data_apache.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ The sample code for single column data insertion is as follows:
3939

4040
```
4141
IoTDB > insert into root.ln.wf02.wt02(timestamp,status) values(1,true)
42-
IoTDB > insert into root.ln.wf02.wt02(timestamp,hardware) values(1, 'v1')
42+
IoTDB > insert into root.ln.wf02.wt02(timestamp,hardware) values(1, "v1")
4343
```
4444

4545
The above example code inserts the long integer timestamp and the value "true" into the timeseries `root.ln.wf02.wt02.status` and inserts the long integer timestamp and the value "v1" into the timeseries `root.ln.wf02.wt02.hardware`. When the execution is successful, cost time is shown to indicate that the data insertion has been completed.

src/UserGuide/latest/Basic-Concept/Write-Data_timecho.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ The sample code for single column data insertion is as follows:
3939

4040
```
4141
IoTDB > insert into root.ln.wf02.wt02(timestamp,status) values(1,true)
42-
IoTDB > insert into root.ln.wf02.wt02(timestamp,hardware) values(1, 'v1')
42+
IoTDB > insert into root.ln.wf02.wt02(timestamp,hardware) values(1, "v1")
4343
```
4444

4545
The above example code inserts the long integer timestamp and the value "true" into the timeseries `root.ln.wf02.wt02.status` and inserts the long integer timestamp and the value "v1" into the timeseries `root.ln.wf02.wt02.hardware`. When the execution is successful, cost time is shown to indicate that the data insertion has been completed.

src/zh/UserGuide/Master/Tree/Basic-Concept/Write-Data_apache.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,10 @@ IoTDB 为用户提供多种插入实时数据的方式,例如在 [Cli/Shell
3939

4040
```sql
4141
IoTDB > insert into root.ln.wf02.wt02(timestamp,status) values(1,true)
42-
IoTDB > insert into root.ln.wf02.wt02(timestamp,hardware) values(1, 'v1')
42+
IoTDB > insert into root.ln.wf02.wt02(timestamp,hardware) values(1, "v1")
4343
```
4444

45-
以上示例代码将长整型的 timestamp 以及值为 true 的数据插入到时间序列`root.ln.wf02.wt02.status`中和将长整型的 timestamp 以及值为”v1”的数据插入到时间序列`root.ln.wf02.wt02.hardware`中。执行成功后会返回执行时间,代表数据插入已完成。
45+
以上示例代码将长整型的 timestamp 以及值为 true 的数据插入到时间序列`root.ln.wf02.wt02.status`中和将长整型的 timestamp 以及值为"v1"的数据插入到时间序列`root.ln.wf02.wt02.hardware`中。执行成功后会返回执行时间,代表数据插入已完成。
4646

4747
> 注意:在 IoTDB 中,TEXT 类型的数据单双引号都可以来表示,上面的插入语句是用的是双引号表示 TEXT 类型数据,下面的示例将使用单引号表示 TEXT 类型数据。
4848

src/zh/UserGuide/Master/Tree/Basic-Concept/Write-Data_timecho.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,10 @@ IoTDB 为用户提供多种插入实时数据的方式,例如在 [Cli/Shell
3939

4040
```sql
4141
IoTDB > insert into root.ln.wf02.wt02(timestamp,status) values(1,true)
42-
IoTDB > insert into root.ln.wf02.wt02(timestamp,hardware) values(1, 'v1')
42+
IoTDB > insert into root.ln.wf02.wt02(timestamp,hardware) values(1, "v1")
4343
```
4444

45-
以上示例代码将长整型的 timestamp 以及值为 true 的数据插入到时间序列`root.ln.wf02.wt02.status`中和将长整型的 timestamp 以及值为”v1”的数据插入到时间序列`root.ln.wf02.wt02.hardware`中。执行成功后会返回执行时间,代表数据插入已完成。
45+
以上示例代码将长整型的 timestamp 以及值为 true 的数据插入到时间序列`root.ln.wf02.wt02.status`中和将长整型的 timestamp 以及值为"v1"的数据插入到时间序列`root.ln.wf02.wt02.hardware`中。执行成功后会返回执行时间,代表数据插入已完成。
4646

4747
> 注意:在 IoTDB 中,TEXT 类型的数据单双引号都可以来表示,上面的插入语句是用的是双引号表示 TEXT 类型数据,下面的示例将使用单引号表示 TEXT 类型数据。
4848

src/zh/UserGuide/V1.3.x/Basic-Concept/Write-Data.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,10 @@ IoTDB 为用户提供多种插入实时数据的方式,例如在 [Cli/Shell
3939

4040
```sql
4141
IoTDB > insert into root.ln.wf02.wt02(timestamp,status) values(1,true)
42-
IoTDB > insert into root.ln.wf02.wt02(timestamp,hardware) values(1, 'v1')
42+
IoTDB > insert into root.ln.wf02.wt02(timestamp,hardware) values(1, "v1")
4343
```
4444

45-
以上示例代码将长整型的 timestamp 以及值为 true 的数据插入到时间序列`root.ln.wf02.wt02.status`中和将长整型的 timestamp 以及值为”v1”的数据插入到时间序列`root.ln.wf02.wt02.hardware`中。执行成功后会返回执行时间,代表数据插入已完成。
45+
以上示例代码将长整型的 timestamp 以及值为 true 的数据插入到时间序列`root.ln.wf02.wt02.status`中和将长整型的 timestamp 以及值为"v1"的数据插入到时间序列`root.ln.wf02.wt02.hardware`中。执行成功后会返回执行时间,代表数据插入已完成。
4646

4747
> 注意:在 IoTDB 中,TEXT 类型的数据单双引号都可以来表示,上面的插入语句是用的是双引号表示 TEXT 类型数据,下面的示例将使用单引号表示 TEXT 类型数据。
4848

src/zh/UserGuide/dev-1.3/Basic-Concept/Write-Data.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,10 @@ IoTDB 为用户提供多种插入实时数据的方式,例如在 [Cli/Shell
3939

4040
```sql
4141
IoTDB > insert into root.ln.wf02.wt02(timestamp,status) values(1,true)
42-
IoTDB > insert into root.ln.wf02.wt02(timestamp,hardware) values(1, 'v1')
42+
IoTDB > insert into root.ln.wf02.wt02(timestamp,hardware) values(1, "v1")
4343
```
4444

45-
以上示例代码将长整型的 timestamp 以及值为 true 的数据插入到时间序列`root.ln.wf02.wt02.status`中和将长整型的 timestamp 以及值为”v1”的数据插入到时间序列`root.ln.wf02.wt02.hardware`中。执行成功后会返回执行时间,代表数据插入已完成。
45+
以上示例代码将长整型的 timestamp 以及值为 true 的数据插入到时间序列`root.ln.wf02.wt02.status`中和将长整型的 timestamp 以及值为"v1"的数据插入到时间序列`root.ln.wf02.wt02.hardware`中。执行成功后会返回执行时间,代表数据插入已完成。
4646

4747
> 注意:在 IoTDB 中,TEXT 类型的数据单双引号都可以来表示,上面的插入语句是用的是双引号表示 TEXT 类型数据,下面的示例将使用单引号表示 TEXT 类型数据。
4848

0 commit comments

Comments
 (0)