This is an automated email from the ASF dual-hosted git repository.
haonan pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/iotdb.git
The following commit(s) were added to refs/heads/master by this push:
new 077704ecfa Fix bad url in the official documentation (#9060)
077704ecfa is described below
commit 077704ecfab9458f06ea66d7437c457e2cf42eb7
Author: wanghui42 <[email protected]>
AuthorDate: Wed Feb 15 23:14:46 2023 +0800
Fix bad url in the official documentation (#9060)
---
docs/UserGuide/API/Programming-Java-Native-API.md | 2 +-
docs/UserGuide/Data-Concept/Data-Model-and-Terminology.md | 2 +-
docs/zh/UserGuide/API/Programming-Java-Native-API.md | 2 +-
docs/zh/UserGuide/Data-Concept/Data-Model-and-Terminology.md | 2 +-
4 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/docs/UserGuide/API/Programming-Java-Native-API.md
b/docs/UserGuide/API/Programming-Java-Native-API.md
index bb8871f514..817223155d 100644
--- a/docs/UserGuide/API/Programming-Java-Native-API.md
+++ b/docs/UserGuide/API/Programming-Java-Native-API.md
@@ -47,7 +47,7 @@ In root directory:
## Syntax Convention
-- **IoTDB-SQL interface:** The input SQL parameter needs to conform to the
[syntax conventions](../Reference/Syntax-Conventions.md) and be escaped for
JAVA strings. For example, you need to add a backslash before the
double-quotes. (That is: after JAVA escaping, it is consistent with the SQL
statement executed on the command line.)
+- **IoTDB-SQL interface:** The input SQL parameter needs to conform to the
[syntax conventions](../Syntax-Conventions/Literal-Values.md) and be escaped
for JAVA strings. For example, you need to add a backslash before the
double-quotes. (That is: after JAVA escaping, it is consistent with the SQL
statement executed on the command line.)
- **Other interfaces:**
- The node names in path or path prefix as parameter: The node names which
should be escaped by backticks (`) in the SQL statement, escaping is required
here.
- Identifiers (such as template names) as parameters: The identifiers which
should be escaped by backticks (`) in the SQL statement, and escaping is not
required here.
diff --git a/docs/UserGuide/Data-Concept/Data-Model-and-Terminology.md
b/docs/UserGuide/Data-Concept/Data-Model-and-Terminology.md
index 393630fd03..5fc169cbda 100644
--- a/docs/UserGuide/Data-Concept/Data-Model-and-Terminology.md
+++ b/docs/UserGuide/Data-Concept/Data-Model-and-Terminology.md
@@ -85,7 +85,7 @@ The following are the constraints on the `nodeName`:
* [ 0-9 a-z A-Z _ ] (letters, numbers, underscore)
* ['\u2E80'..'\u9FFF'] (Chinese characters)
* In particular, if the system is deployed on a Windows machine, the database
layer name will be case-insensitive. For example, creating both `root.ln` and
`root.LN` at the same time is not allowed.
-* If you want to use special characters in `nodeName`, you can quote it with
back quote, detailed information can be found here:
[Syntax-Conventions](https://iotdb.apache.org/UserGuide/Master/Reference/Syntax-Conventions.html).
+* If you want to use special characters in `nodeName`, you can quote it with
back quote, detailed information can be found from charpter
Syntax-Conventions,click here:
[Syntax-Conventions](https://iotdb.apache.org/UserGuide/Master/Syntax-Conventions/Literal-Values.html).
### Path Pattern
diff --git a/docs/zh/UserGuide/API/Programming-Java-Native-API.md
b/docs/zh/UserGuide/API/Programming-Java-Native-API.md
index ed79f577b1..f6e8004562 100644
--- a/docs/zh/UserGuide/API/Programming-Java-Native-API.md
+++ b/docs/zh/UserGuide/API/Programming-Java-Native-API.md
@@ -50,7 +50,7 @@ mvn clean install -pl session -am -Dmaven.test.skip=true
## 语法说明
- - 对于 IoTDB-SQL 接口:传入的 SQL 参数需要符合 [语法规范](../Reference/Syntax-Conventions.md)
,并且针对 JAVA 字符串进行反转义,如双引号前需要加反斜杠。(即:经 JAVA 转义之后与命令行执行的 SQL 语句一致。)
+ - 对于 IoTDB-SQL 接口:传入的 SQL 参数需要符合
[语法规范](../Syntax-Conventions/Literal-Values.md) ,并且针对 JAVA
字符串进行反转义,如双引号前需要加反斜杠。(即:经 JAVA 转义之后与命令行执行的 SQL 语句一致。)
- 对于其他接口:
- 经参数传入的路径或路径前缀中的节点: 在 SQL 语句中需要使用反引号(`)进行转义的,此处均需要进行转义。
- 经参数传入的标识符(如模板名):在 SQL 语句中需要使用反引号(`)进行转义的,均可以不用进行转义。
diff --git a/docs/zh/UserGuide/Data-Concept/Data-Model-and-Terminology.md
b/docs/zh/UserGuide/Data-Concept/Data-Model-and-Terminology.md
index e559251312..59f313ad1b 100644
--- a/docs/zh/UserGuide/Data-Concept/Data-Model-and-Terminology.md
+++ b/docs/zh/UserGuide/Data-Concept/Data-Model-and-Terminology.md
@@ -88,7 +88,7 @@ wildcard
* [ 0-9 a-z A-Z _ ] (字母,数字,下划线)
* ['\u2E80'..'\u9FFF'] (UNICODE 中文字符)
* 特别地,如果系统在 Windows 系统上部署,那么 database 路径结点名是大小写不敏感的。例如,同时创建`root.ln` 和
`root.LN` 是不被允许的。
-*
如果需要在路径结点名中用特殊字符,可以用反引号引用路径结点名,具体使用方法可以参考[语法约定](../Reference/Syntax-Conventions.md)。
+*
如果需要在路径结点名中用特殊字符,可以用反引号引用路径结点名,具体使用方法可以参考[语法约定](../Syntax-Conventions/Literal-Values.md)。
### 路径模式(Path Pattern)