Skip to content

Commit 445de96

Browse files
AI Translate 31-system-tables to Simplified-Chinese (#2527)
* [INIT] Start translation to Simplified-Chinese * 🌐 Translate system-indexes.md to Simplified-Chinese * 🌐 Translate system-indexes.md to Simplified-Chinese --------- Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent 7e4608b commit 445de96

File tree

3 files changed

+15
-14
lines changed

3 files changed

+15
-14
lines changed

.translation-init

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
Translation initialization: 2025-07-22T02:24:51.851102
1+
Translation initialization: 2025-07-22T07:48:40.253765

docs/cn/sql-reference/00-sql-reference/31-system-tables/system-indexes.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ title: system.indexes
44

55
import FunctionDescription from '@site/src/components/FunctionDescription';
66

7-
<FunctionDescription description="Introduced: v1.1.50"/>
7+
<FunctionDescription description="引入版本:v1.1.50"/>
88

99
包含有关已创建索引(Index)的信息。
1010

@@ -13,13 +13,13 @@ import FunctionDescription from '@site/src/components/FunctionDescription';
1313
```sql
1414
CREATE TABLE t1(a int,b int);
1515

16-
CREATE AGGREGATING INDEX idx1 AS SELECT SUM(a), b FROM default.t1 WHERE b > 3 GROUP BY b
16+
CREATE AGGREGATING INDEX idx1 AS SELECT SUM(a), b FROM default.t1 WHERE b > 3 GROUP BY b;
1717

18-
SELECT * FROM system.indexes
19-
```
18+
SELECT * FROM system.indexes;
2019

2120
+----------+-------------+------------------------------------------------------------+----------------------------+
2221
| name | type | definition | created_on |
2322
+----------+-------------+------------------------------------------------------------+----------------------------+
2423
| test_idx | AGGREGATING | SELECT b, SUM(a) FROM default.t1 WHERE (b > 3) GROUP BY b | 2023-05-17 11:53:54.474377 |
25-
+----------+-------------+------------------------------------------------------------+----------------------------+
24+
+----------+-------------+------------------------------------------------------------+----------------------------+
25+
```

docs/cn/sql-reference/10-sql-commands/00-ddl/19-warehouse/create-warehouse.md

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,29 @@
11
---
22
title: CREATE WAREHOUSE
33
---
4+
45
import FunctionDescription from '@site/src/components/FunctionDescription';
56

6-
<FunctionDescription description="Introduced or updated: v1.2.687"/>
7+
<FunctionDescription description="引入或更新于:v1.2.687"/>
78

8-
创建具有指定大小或通过从特定节点组分配节点的计算集群
9+
创建一个具有指定大小的计算集群(Warehouse),或通过从特定节点组分配节点来创建
910

10-
## Syntax
11+
## 语法
1112

1213
```sql
13-
CREATE WAREHOUSE <warehouse_name>
14+
CREATE WAREHOUSE <warehouse_name>
1415
[WITH warehouse_size = <size> | ( ASSIGN <node_count> NODES FROM <node_group>[, <node_count> NODES FROM <node_group> ... ] ) ]
1516
```
1617

17-
## Examples
18+
## 示例
1819

19-
此示例创建一个大小为 10 的计算集群:
20+
此示例创建一个大小为 10 的计算集群(Warehouse)
2021

2122
```sql
22-
CREATE WAREHOUSE test_warehouse WITH warehouse_size = 10
23+
CREATE WAREHOUSE test_warehouse WITH warehouse_size = 10;
2324
```
2425

25-
此示例通过从节点组分配特定节点来创建计算集群
26+
此示例通过从特定节点组分配节点来创建一个计算集群(Warehouse)
2627

2728
```sql
2829
CREATE WAREHOUSE test_warehouse (ASSIGN 1 NODES FROM log_node, ASSIGN 2 NODES FROM infra_node);

0 commit comments

Comments
 (0)