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 1f724c807d [IOTDB-3288] Fix single quotes to backtick. (#6023)
1f724c807d is described below
commit 1f724c807d34246cc6ec2c14513109d138feb7dd
Author: ZhangHongYin <[email protected]>
AuthorDate: Thu May 26 10:52:20 2022 +0800
[IOTDB-3288] Fix single quotes to backtick. (#6023)
* fix eg.
* fix single quotes to backtick
---
docs/UserGuide/Administration-Management/Administration.md | 2 +-
docs/zh/UserGuide/Administration-Management/Administration.md | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/docs/UserGuide/Administration-Management/Administration.md
b/docs/UserGuide/Administration-Management/Administration.md
index 1544e7c0fd..5859206deb 100644
--- a/docs/UserGuide/Administration-Management/Administration.md
+++ b/docs/UserGuide/Administration-Management/Administration.md
@@ -50,7 +50,7 @@ According to the [sample
data](https://github.com/thulab/iotdb/files/4438687/Oth
### Create User
-We use `CREATE USER <userName> <password>` to create users. For example, we
can use root user who has all privileges to create two users for ln and sgcc
groups, named ln\_write\_user and sgcc\_write\_user, with both passwords being
write\_pwd. It is recommended to wrap the username in single quotes. The SQL
statement is:
+We use `CREATE USER <userName> <password>` to create users. For example, we
can use root user who has all privileges to create two users for ln and sgcc
groups, named ln\_write\_user and sgcc\_write\_user, with both passwords being
write\_pwd. It is recommended to wrap the username in backtick(`). The SQL
statement is:
```
CREATE USER `ln_write_user` 'write_pwd'
diff --git a/docs/zh/UserGuide/Administration-Management/Administration.md
b/docs/zh/UserGuide/Administration-Management/Administration.md
index 37ef3d95fc..2abffc4fa8 100644
--- a/docs/zh/UserGuide/Administration-Management/Administration.md
+++ b/docs/zh/UserGuide/Administration-Management/Administration.md
@@ -49,7 +49,7 @@ IoTDB 为用户提供了权限管理操作,从而为用户提供对于数据
### 创建用户
-使用 `CREATE USER <userName> <password>` 创建用户。例如,我们可以使用具有所有权限的root用户为 ln 和 sgcc
集团创建两个用户角色,名为 ln_write_user, sgcc_write_user,密码均为 write_pwd。建议使用单引号包裹用户名。SQL
语句为:
+使用 `CREATE USER <userName> <password>` 创建用户。例如,我们可以使用具有所有权限的root用户为 ln 和 sgcc
集团创建两个用户角色,名为 ln_write_user, sgcc_write_user,密码均为 write_pwd。建议使用反引号(`)包裹用户名。SQL
语句为:
```
CREATE USER `ln_write_user` 'write_pwd'