This is an automated email from the ASF dual-hosted git repository.
kassiez pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/doris-website.git
The following commit(s) were added to refs/heads/master by this push:
new 29638bd3209 [fix]The Chinese document for drop SQL block rule is
displayed in English (#2297)
29638bd3209 is described below
commit 29638bd320985678e9762cafa217a10e7700d1a3
Author: zhangdong <[email protected]>
AuthorDate: Wed Apr 23 20:15:18 2025 +0800
[fix]The Chinese document for drop SQL block rule is displayed in English
(#2297)
## Versions
- [ ] dev
- [x] 3.0
- [ ] 2.1
- [ ] 2.0
## Languages
- [x] Chinese
- [ ] English
## Docs Checklist
- [ ] Checked by AI
- [ ] Test Cases Built
---
.../data-governance/DROP-SQL_BLOCK_RULE.md | 30 +++++++++++-----------
1 file changed, 15 insertions(+), 15 deletions(-)
diff --git
a/i18n/zh-CN/docusaurus-plugin-content-docs/version-3.0/sql-manual/sql-statements/data-governance/DROP-SQL_BLOCK_RULE.md
b/i18n/zh-CN/docusaurus-plugin-content-docs/version-3.0/sql-manual/sql-statements/data-governance/DROP-SQL_BLOCK_RULE.md
index 2348a65337a..742bf5d4db1 100644
---
a/i18n/zh-CN/docusaurus-plugin-content-docs/version-3.0/sql-manual/sql-statements/data-governance/DROP-SQL_BLOCK_RULE.md
+++
b/i18n/zh-CN/docusaurus-plugin-content-docs/version-3.0/sql-manual/sql-statements/data-governance/DROP-SQL_BLOCK_RULE.md
@@ -1,7 +1,7 @@
---
{
- "title": "DROP SQL_BLOCK_RULE",
- "language": "en"
+"title": "DROP SQL_BLOCK_RULE",
+"language": "zh-CN"
}
---
@@ -24,32 +24,32 @@ specific language governing permissions and limitations
under the License.
-->
-## Description
+## 描述
-Deletes one or more SQL blocking rules. Multiple rules can be deleted at once
by separating them with commas.
+删除一个或多个 SQL 阻止规则。支持同时删除多个规则,规则名称之间用逗号分隔。
-## Syntax
+## 语法
```sql
DROP SQL_BLOCK_RULE <rule_name>[, ...]
```
-## Required Parameters
+## 必选参数
-<rule_name>
-The name of the SQL blocking rule to be deleted. Multiple rule names can be
specified, separated by commas.
+`<rule_name>`
+需要删除的 SQL 阻止规则名称,多个规则用逗号分隔。
-## Access Control Requirements
+## 权限控制
-Users executing this SQL command must have at least the following privileges:
-| Privilege | Object | Notes |
-| :---------------- | :------------- | :---------------------------- |
-| ADMIN | User or Role | Only users or roles with the ADMIN privilege
can perform the DROP operation. |
+执行此 SQL 命令的用户必须至少具有以下权限:
+| 权限 | 对象 | 说明 |
+|---------|------------|-----------------------------------------|
+| ADMIN | 用户或角色 | 仅具有 ADMIN 权限的用户或角色可以执行 DROP 操作。 |
-## Example
+## 示例
-Delete `test_rule1` and `test_rule2` blocking rules
+删除 `test_rule1` 和 `test_rule2` 阻止规则:
```sql
DROP SQL_BLOCK_RULE test_rule1, test_rule2;
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]