This is an automated email from the ASF dual-hosted git repository.

haonan 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 6b3c972  fixed database names that shouldn't be shown as links, three 
in all (#26)
6b3c972 is described below

commit 6b3c97223c2e63fddece5ab280c3cf5e7dde69a7
Author: wanghui42 <[email protected]>
AuthorDate: Fri Jul 28 18:43:40 2023 +0800

    fixed database names that shouldn't be shown as links, three in all (#26)
---
 src/UserGuide/V1.1.x/Syntax-Conventions/Session-And-TsFile-API.md   | 6 +++---
 .../UserGuide/V1.1.x/Syntax-Conventions/Session-And-TsFile-API.md   | 6 +++---
 2 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/src/UserGuide/V1.1.x/Syntax-Conventions/Session-And-TsFile-API.md 
b/src/UserGuide/V1.1.x/Syntax-Conventions/Session-And-TsFile-API.md
index 6d0c171..465567c 100644
--- a/src/UserGuide/V1.1.x/Syntax-Conventions/Session-And-TsFile-API.md
+++ b/src/UserGuide/V1.1.x/Syntax-Conventions/Session-And-TsFile-API.md
@@ -34,7 +34,7 @@ public void createTimeseries(
     throws IoTDBConnectionException, StatementExecutionException;
 ```
 
-If you wish to create the time series root.sg.a, root.sg.\`a.\`\`"b\`, 
root.sg.\`111\`, the SQL statement you use should look like this:
+If you wish to create the time series``` root.sg.a, root.sg.`a.``"b`, 
root.sg.`111` ```, the SQL statement you use should look like this:
 
 ```sql
 create timeseries root.sg.a with 
datatype=FLOAT,encoding=PLAIN,compressor=SNAPPY;
@@ -71,7 +71,7 @@ public void insertRecord(
     throws IoTDBConnectionException, StatementExecutionException;
 ```
 
-If you want to insert data into the time series root.sg.a, 
root.sg.\`a.\`\`"b\`, root.sg.\`111\`, the SQL statement you use should be as 
follows:
+If you want to insert data into the time series ``` root.sg.a, 
root.sg.`a.``"b` , root.sg.`111` ```, the SQL statement you use should be as 
follows:
 
 ```sql
 insert into root.sg(timestamp, a, `a.``"b`, `111`) values (1, 2, 2, 2);
@@ -98,7 +98,7 @@ public SessionDataSet executeRawDataQuery(
     throws StatementExecutionException, IoTDBConnectionException;
 ```
 
-If you wish to query the data of the time series root.sg.a, 
root.sg.\`a.\`\`"b\`, root.sg.\`111\`, the SQL statement you use should be as 
follows :
+If you wish to query the data of the time series ``` root.sg.a, 
root.sg.`a.``"b`, root.sg.`111` ```, the SQL statement you use should be as 
follows :
 
 ```sql
 select a from root.sg
diff --git 
a/src/zh/UserGuide/V1.1.x/Syntax-Conventions/Session-And-TsFile-API.md 
b/src/zh/UserGuide/V1.1.x/Syntax-Conventions/Session-And-TsFile-API.md
index d8428de..ce181c7 100644
--- a/src/zh/UserGuide/V1.1.x/Syntax-Conventions/Session-And-TsFile-API.md
+++ b/src/zh/UserGuide/V1.1.x/Syntax-Conventions/Session-And-TsFile-API.md
@@ -34,7 +34,7 @@ public void createTimeseries(
     throws IoTDBConnectionException, StatementExecutionException;
 ```
 
-如果您希望创建时间序列 root.sg.a,root.sg.\`a.\`\`"b\`,root.sg.\`111\`,您使用的 SQL 语句应该如下所示:
+如果您希望创建时间序列 ``` root.sg.a,root.sg.`a.``"b`,root.sg.`111` ```,您使用的 SQL 语句应该如下所示:
 
 ```SQL
 create timeseries root.sg.a with 
datatype=FLOAT,encoding=PLAIN,compressor=SNAPPY;
@@ -71,7 +71,7 @@ public void insertRecord(
     throws IoTDBConnectionException, StatementExecutionException;
 ```
 
-如果您希望向时间序列 root.sg.a,root.sg.\`a.\`\`"b\`,root.sg.\`111\`中插入数据,您使用的 SQL 
语句应该如下所示:
+如果您希望向时间序列 ``` root.sg.a,root.sg.`a.``"b`,root.sg.`111` ``` 中插入数据,您使用的 SQL 
语句应该如下所示:
 
 ```SQL
 insert into root.sg(timestamp, a, `a.``"b`, `111`) values (1, 2, 2, 2);
@@ -98,7 +98,7 @@ public SessionDataSet executeRawDataQuery(
     throws StatementExecutionException, IoTDBConnectionException;
 ```
 
-如果您希望查询时间序列 root.sg.a,root.sg.\`a.\`\`"b\`,root.sg.\`111\`的数据,您使用的 SQL 
语句应该如下所示:
+如果您希望查询时间序列``` root.sg.a,root.sg.`a.``"b`,root.sg.`111` ```的数据,您使用的 SQL 
语句应该如下所示:
 
 ```SQL
 select a from root.sg

Reply via email to