This is an automated email from the ASF dual-hosted git repository.
HTHou pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/iotdb-docs.git
The following commit(s) were added to refs/heads/main by this push:
new 5fa1ad26 fix data isnert description about text (#1113)
5fa1ad26 is described below
commit 5fa1ad26929dd0e994cef8b3a54c87f1194963ab
Author: leto-b <[email protected]>
AuthorDate: Fri May 15 09:34:26 2026 +0800
fix data isnert description about text (#1113)
---
src/UserGuide/Master/Tree/Basic-Concept/Write-Data_apache.md | 2 +-
src/UserGuide/Master/Tree/Basic-Concept/Write-Data_timecho.md | 2 +-
src/UserGuide/V1.3.x/Basic-Concept/Write-Data.md | 2 +-
src/UserGuide/dev-1.3/Basic-Concept/Write-Data.md | 2 +-
src/UserGuide/latest/Basic-Concept/Write-Data_apache.md | 2 +-
src/UserGuide/latest/Basic-Concept/Write-Data_timecho.md | 2 +-
src/zh/UserGuide/Master/Tree/Basic-Concept/Write-Data_apache.md | 4 ++--
src/zh/UserGuide/Master/Tree/Basic-Concept/Write-Data_timecho.md | 4 ++--
src/zh/UserGuide/V1.3.x/Basic-Concept/Write-Data.md | 4 ++--
src/zh/UserGuide/dev-1.3/Basic-Concept/Write-Data.md | 4 ++--
src/zh/UserGuide/latest/Basic-Concept/Write-Data_apache.md | 4 ++--
src/zh/UserGuide/latest/Basic-Concept/Write-Data_timecho.md | 4 ++--
12 files changed, 18 insertions(+), 18 deletions(-)
diff --git a/src/UserGuide/Master/Tree/Basic-Concept/Write-Data_apache.md
b/src/UserGuide/Master/Tree/Basic-Concept/Write-Data_apache.md
index 6d42714a..a3a9b88e 100644
--- a/src/UserGuide/Master/Tree/Basic-Concept/Write-Data_apache.md
+++ b/src/UserGuide/Master/Tree/Basic-Concept/Write-Data_apache.md
@@ -39,7 +39,7 @@ The sample code for single column data insertion is as
follows:
```
IoTDB > insert into root.ln.wf02.wt02(timestamp,status) values(1,true)
-IoTDB > insert into root.ln.wf02.wt02(timestamp,hardware) values(1, 'v1')
+IoTDB > insert into root.ln.wf02.wt02(timestamp,hardware) values(1, "v1")
```
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.
diff --git a/src/UserGuide/Master/Tree/Basic-Concept/Write-Data_timecho.md
b/src/UserGuide/Master/Tree/Basic-Concept/Write-Data_timecho.md
index 8108566d..a0379a87 100644
--- a/src/UserGuide/Master/Tree/Basic-Concept/Write-Data_timecho.md
+++ b/src/UserGuide/Master/Tree/Basic-Concept/Write-Data_timecho.md
@@ -39,7 +39,7 @@ The sample code for single column data insertion is as
follows:
```
IoTDB > insert into root.ln.wf02.wt02(timestamp,status) values(1,true)
-IoTDB > insert into root.ln.wf02.wt02(timestamp,hardware) values(1, 'v1')
+IoTDB > insert into root.ln.wf02.wt02(timestamp,hardware) values(1, "v1")
```
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.
diff --git a/src/UserGuide/V1.3.x/Basic-Concept/Write-Data.md
b/src/UserGuide/V1.3.x/Basic-Concept/Write-Data.md
index 934aef19..7e29cacc 100644
--- a/src/UserGuide/V1.3.x/Basic-Concept/Write-Data.md
+++ b/src/UserGuide/V1.3.x/Basic-Concept/Write-Data.md
@@ -39,7 +39,7 @@ The sample code for single column data insertion is as
follows:
```
IoTDB > insert into root.ln.wf02.wt02(timestamp,status) values(1,true)
-IoTDB > insert into root.ln.wf02.wt02(timestamp,hardware) values(1, 'v1')
+IoTDB > insert into root.ln.wf02.wt02(timestamp,hardware) values(1, "v1")
```
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.
diff --git a/src/UserGuide/dev-1.3/Basic-Concept/Write-Data.md
b/src/UserGuide/dev-1.3/Basic-Concept/Write-Data.md
index 934aef19..7e29cacc 100644
--- a/src/UserGuide/dev-1.3/Basic-Concept/Write-Data.md
+++ b/src/UserGuide/dev-1.3/Basic-Concept/Write-Data.md
@@ -39,7 +39,7 @@ The sample code for single column data insertion is as
follows:
```
IoTDB > insert into root.ln.wf02.wt02(timestamp,status) values(1,true)
-IoTDB > insert into root.ln.wf02.wt02(timestamp,hardware) values(1, 'v1')
+IoTDB > insert into root.ln.wf02.wt02(timestamp,hardware) values(1, "v1")
```
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.
diff --git a/src/UserGuide/latest/Basic-Concept/Write-Data_apache.md
b/src/UserGuide/latest/Basic-Concept/Write-Data_apache.md
index 60d6aae8..264832ff 100644
--- a/src/UserGuide/latest/Basic-Concept/Write-Data_apache.md
+++ b/src/UserGuide/latest/Basic-Concept/Write-Data_apache.md
@@ -39,7 +39,7 @@ The sample code for single column data insertion is as
follows:
```
IoTDB > insert into root.ln.wf02.wt02(timestamp,status) values(1,true)
-IoTDB > insert into root.ln.wf02.wt02(timestamp,hardware) values(1, 'v1')
+IoTDB > insert into root.ln.wf02.wt02(timestamp,hardware) values(1, "v1")
```
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.
diff --git a/src/UserGuide/latest/Basic-Concept/Write-Data_timecho.md
b/src/UserGuide/latest/Basic-Concept/Write-Data_timecho.md
index 7cbd7d02..75cee861 100644
--- a/src/UserGuide/latest/Basic-Concept/Write-Data_timecho.md
+++ b/src/UserGuide/latest/Basic-Concept/Write-Data_timecho.md
@@ -39,7 +39,7 @@ The sample code for single column data insertion is as
follows:
```
IoTDB > insert into root.ln.wf02.wt02(timestamp,status) values(1,true)
-IoTDB > insert into root.ln.wf02.wt02(timestamp,hardware) values(1, 'v1')
+IoTDB > insert into root.ln.wf02.wt02(timestamp,hardware) values(1, "v1")
```
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.
diff --git a/src/zh/UserGuide/Master/Tree/Basic-Concept/Write-Data_apache.md
b/src/zh/UserGuide/Master/Tree/Basic-Concept/Write-Data_apache.md
index f508407c..feb731b3 100644
--- a/src/zh/UserGuide/Master/Tree/Basic-Concept/Write-Data_apache.md
+++ b/src/zh/UserGuide/Master/Tree/Basic-Concept/Write-Data_apache.md
@@ -39,10 +39,10 @@ IoTDB 为用户提供多种插入实时数据的方式,例如在 [Cli/Shell
```sql
IoTDB > insert into root.ln.wf02.wt02(timestamp,status) values(1,true)
-IoTDB > insert into root.ln.wf02.wt02(timestamp,hardware) values(1, 'v1')
+IoTDB > insert into root.ln.wf02.wt02(timestamp,hardware) values(1, "v1")
```
-以上示例代码将长整型的 timestamp 以及值为 true 的数据插入到时间序列`root.ln.wf02.wt02.status`中和将长整型的
timestamp
以及值为”v1”的数据插入到时间序列`root.ln.wf02.wt02.hardware`中。执行成功后会返回执行时间,代表数据插入已完成。
+以上示例代码将长整型的 timestamp 以及值为 true 的数据插入到时间序列`root.ln.wf02.wt02.status`中和将长整型的
timestamp
以及值为"v1"的数据插入到时间序列`root.ln.wf02.wt02.hardware`中。执行成功后会返回执行时间,代表数据插入已完成。
> 注意:在 IoTDB 中,TEXT 类型的数据单双引号都可以来表示,上面的插入语句是用的是双引号表示 TEXT 类型数据,下面的示例将使用单引号表示
> TEXT 类型数据。
diff --git a/src/zh/UserGuide/Master/Tree/Basic-Concept/Write-Data_timecho.md
b/src/zh/UserGuide/Master/Tree/Basic-Concept/Write-Data_timecho.md
index 8c047caa..c1e21574 100644
--- a/src/zh/UserGuide/Master/Tree/Basic-Concept/Write-Data_timecho.md
+++ b/src/zh/UserGuide/Master/Tree/Basic-Concept/Write-Data_timecho.md
@@ -39,10 +39,10 @@ IoTDB 为用户提供多种插入实时数据的方式,例如在 [Cli/Shell
```sql
IoTDB > insert into root.ln.wf02.wt02(timestamp,status) values(1,true)
-IoTDB > insert into root.ln.wf02.wt02(timestamp,hardware) values(1, 'v1')
+IoTDB > insert into root.ln.wf02.wt02(timestamp,hardware) values(1, "v1")
```
-以上示例代码将长整型的 timestamp 以及值为 true 的数据插入到时间序列`root.ln.wf02.wt02.status`中和将长整型的
timestamp
以及值为”v1”的数据插入到时间序列`root.ln.wf02.wt02.hardware`中。执行成功后会返回执行时间,代表数据插入已完成。
+以上示例代码将长整型的 timestamp 以及值为 true 的数据插入到时间序列`root.ln.wf02.wt02.status`中和将长整型的
timestamp
以及值为"v1"的数据插入到时间序列`root.ln.wf02.wt02.hardware`中。执行成功后会返回执行时间,代表数据插入已完成。
> 注意:在 IoTDB 中,TEXT 类型的数据单双引号都可以来表示,上面的插入语句是用的是双引号表示 TEXT 类型数据,下面的示例将使用单引号表示
> TEXT 类型数据。
diff --git a/src/zh/UserGuide/V1.3.x/Basic-Concept/Write-Data.md
b/src/zh/UserGuide/V1.3.x/Basic-Concept/Write-Data.md
index 1b53fa8d..73b1df2f 100644
--- a/src/zh/UserGuide/V1.3.x/Basic-Concept/Write-Data.md
+++ b/src/zh/UserGuide/V1.3.x/Basic-Concept/Write-Data.md
@@ -39,10 +39,10 @@ IoTDB 为用户提供多种插入实时数据的方式,例如在 [Cli/Shell
```sql
IoTDB > insert into root.ln.wf02.wt02(timestamp,status) values(1,true)
-IoTDB > insert into root.ln.wf02.wt02(timestamp,hardware) values(1, 'v1')
+IoTDB > insert into root.ln.wf02.wt02(timestamp,hardware) values(1, "v1")
```
-以上示例代码将长整型的 timestamp 以及值为 true 的数据插入到时间序列`root.ln.wf02.wt02.status`中和将长整型的
timestamp
以及值为”v1”的数据插入到时间序列`root.ln.wf02.wt02.hardware`中。执行成功后会返回执行时间,代表数据插入已完成。
+以上示例代码将长整型的 timestamp 以及值为 true 的数据插入到时间序列`root.ln.wf02.wt02.status`中和将长整型的
timestamp
以及值为"v1"的数据插入到时间序列`root.ln.wf02.wt02.hardware`中。执行成功后会返回执行时间,代表数据插入已完成。
> 注意:在 IoTDB 中,TEXT 类型的数据单双引号都可以来表示,上面的插入语句是用的是双引号表示 TEXT 类型数据,下面的示例将使用单引号表示
> TEXT 类型数据。
diff --git a/src/zh/UserGuide/dev-1.3/Basic-Concept/Write-Data.md
b/src/zh/UserGuide/dev-1.3/Basic-Concept/Write-Data.md
index 1b53fa8d..73b1df2f 100644
--- a/src/zh/UserGuide/dev-1.3/Basic-Concept/Write-Data.md
+++ b/src/zh/UserGuide/dev-1.3/Basic-Concept/Write-Data.md
@@ -39,10 +39,10 @@ IoTDB 为用户提供多种插入实时数据的方式,例如在 [Cli/Shell
```sql
IoTDB > insert into root.ln.wf02.wt02(timestamp,status) values(1,true)
-IoTDB > insert into root.ln.wf02.wt02(timestamp,hardware) values(1, 'v1')
+IoTDB > insert into root.ln.wf02.wt02(timestamp,hardware) values(1, "v1")
```
-以上示例代码将长整型的 timestamp 以及值为 true 的数据插入到时间序列`root.ln.wf02.wt02.status`中和将长整型的
timestamp
以及值为”v1”的数据插入到时间序列`root.ln.wf02.wt02.hardware`中。执行成功后会返回执行时间,代表数据插入已完成。
+以上示例代码将长整型的 timestamp 以及值为 true 的数据插入到时间序列`root.ln.wf02.wt02.status`中和将长整型的
timestamp
以及值为"v1"的数据插入到时间序列`root.ln.wf02.wt02.hardware`中。执行成功后会返回执行时间,代表数据插入已完成。
> 注意:在 IoTDB 中,TEXT 类型的数据单双引号都可以来表示,上面的插入语句是用的是双引号表示 TEXT 类型数据,下面的示例将使用单引号表示
> TEXT 类型数据。
diff --git a/src/zh/UserGuide/latest/Basic-Concept/Write-Data_apache.md
b/src/zh/UserGuide/latest/Basic-Concept/Write-Data_apache.md
index f508407c..feb731b3 100644
--- a/src/zh/UserGuide/latest/Basic-Concept/Write-Data_apache.md
+++ b/src/zh/UserGuide/latest/Basic-Concept/Write-Data_apache.md
@@ -39,10 +39,10 @@ IoTDB 为用户提供多种插入实时数据的方式,例如在 [Cli/Shell
```sql
IoTDB > insert into root.ln.wf02.wt02(timestamp,status) values(1,true)
-IoTDB > insert into root.ln.wf02.wt02(timestamp,hardware) values(1, 'v1')
+IoTDB > insert into root.ln.wf02.wt02(timestamp,hardware) values(1, "v1")
```
-以上示例代码将长整型的 timestamp 以及值为 true 的数据插入到时间序列`root.ln.wf02.wt02.status`中和将长整型的
timestamp
以及值为”v1”的数据插入到时间序列`root.ln.wf02.wt02.hardware`中。执行成功后会返回执行时间,代表数据插入已完成。
+以上示例代码将长整型的 timestamp 以及值为 true 的数据插入到时间序列`root.ln.wf02.wt02.status`中和将长整型的
timestamp
以及值为"v1"的数据插入到时间序列`root.ln.wf02.wt02.hardware`中。执行成功后会返回执行时间,代表数据插入已完成。
> 注意:在 IoTDB 中,TEXT 类型的数据单双引号都可以来表示,上面的插入语句是用的是双引号表示 TEXT 类型数据,下面的示例将使用单引号表示
> TEXT 类型数据。
diff --git a/src/zh/UserGuide/latest/Basic-Concept/Write-Data_timecho.md
b/src/zh/UserGuide/latest/Basic-Concept/Write-Data_timecho.md
index 8c047caa..c1e21574 100644
--- a/src/zh/UserGuide/latest/Basic-Concept/Write-Data_timecho.md
+++ b/src/zh/UserGuide/latest/Basic-Concept/Write-Data_timecho.md
@@ -39,10 +39,10 @@ IoTDB 为用户提供多种插入实时数据的方式,例如在 [Cli/Shell
```sql
IoTDB > insert into root.ln.wf02.wt02(timestamp,status) values(1,true)
-IoTDB > insert into root.ln.wf02.wt02(timestamp,hardware) values(1, 'v1')
+IoTDB > insert into root.ln.wf02.wt02(timestamp,hardware) values(1, "v1")
```
-以上示例代码将长整型的 timestamp 以及值为 true 的数据插入到时间序列`root.ln.wf02.wt02.status`中和将长整型的
timestamp
以及值为”v1”的数据插入到时间序列`root.ln.wf02.wt02.hardware`中。执行成功后会返回执行时间,代表数据插入已完成。
+以上示例代码将长整型的 timestamp 以及值为 true 的数据插入到时间序列`root.ln.wf02.wt02.status`中和将长整型的
timestamp
以及值为"v1"的数据插入到时间序列`root.ln.wf02.wt02.hardware`中。执行成功后会返回执行时间,代表数据插入已完成。
> 注意:在 IoTDB 中,TEXT 类型的数据单双引号都可以来表示,上面的插入语句是用的是双引号表示 TEXT 类型数据,下面的示例将使用单引号表示
> TEXT 类型数据。