Skip to content

Commit 1d7bb2f

Browse files
committed
Fix CN doc links for data lake and lambda references
1 parent 32f4d10 commit 1d7bb2f

File tree

6 files changed

+9
-10
lines changed

6 files changed

+9
-10
lines changed

docs/cn/guides/00-products/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,4 +34,4 @@ Databend 是新一代多模态 Data+AI 数仓,原生列式存储覆盖结构
3434
**性能与扩展**
3535
- **[性能优化](/guides/performance)**: 通过各种策略提升查询性能。
3636
- **[基准测试](/guides/benchmark)**: 将 Databend 的性能与其他数据仓库(Data Warehouse)进行比较。
37-
- **[数据湖仓](/guides/access-data-lake)**: 与 Hive、Iceberg 和 Delta Lake 无缝集成。
37+
- **[数据湖仓](/sql/sql-reference/table-engines)**: 与 Hive、Iceberg 和 Delta Lake 无缝集成。

docs/cn/sql-reference/00-sql-reference/10-data-types/geospatial.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,7 @@ SET geometry_output_format = 'geojson';
5050

5151
浏览以下链接,了解按类别组织的所有可用地理空间函数。
5252

53-
- [Geometry Functions](../../20-sql-functions/09-geometry-functions/index.md)
54-
- [H3](../../20-sql-functions/09-geo-functions/index.md)
53+
- [地理空间函数](../../20-sql-functions/09-geospatial-functions/index.md)
5554

5655
## 示例
5756

@@ -139,4 +138,4 @@ SELECT id, st_transform(geo, 4326, 3857) FROM test;
139138
6 │ MULTIPOLYGON(((-1113194.907933 0,0 1118889.974858,1113194.907933 0,-1113194.907933 0)),((-1113194.907933 4865942.279503,1113194.907933 4865942.279503,0 2273030.926988,-1113194.907933 4865942.279503))) │
140139
7 │ GEOMETRYCOLLECTION(POLYGON((-1113194.907933 0,0 1118889.974858,1113194.907933 0,-1113194.907933 0)),LINESTRING(4452779.631731 8399737.889818,5565974.539664 6446275.841017,6679169.447596 4865942.279503),POINT(11020629.588534 1232106.801897)) │
141140
└────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┘
142-
```
141+
```

docs/cn/sql-reference/20-sql-functions/10-semi-structured-functions/1-array/array-transform.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import FunctionDescription from '@site/src/components/FunctionDescription';
66

77
<FunctionDescription description="引入或更新版本:v1.2.762"/>
88

9-
使用指定的转换 Lambda 表达式(Lambda Expression)转换 JSON 数组的每个元素。有关 Lambda 表达式的更多信息,请参阅 [Lambda 表达式](/cn/sql/stored-procedure-scripting/#lambda-expressions)
9+
使用指定的转换 Lambda 表达式(Lambda Expression)转换 JSON 数组的每个元素。有关 Lambda 表达式的更多信息,请参阅 [Lambda 表达式](../../../30-stored-procedure-scripting/index.md#lambda-表达式)
1010

1111
## 语法
1212

@@ -30,4 +30,4 @@ SELECT ARRAY_TRANSFORM(
3030

3131
-[ RECORD 1 ]-----------------------------------
3232
array_transform([1, 2, 3, 4], data -> data::Int32 * 10): [10,20,30,40]
33-
```
33+
```

docs/cn/sql-reference/20-sql-functions/10-semi-structured-functions/3-map/map-filter.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import FunctionDescription from '@site/src/components/FunctionDescription';
55

66
<FunctionDescription description="引入或更新版本:v1.2.762"/>
77

8-
根据指定条件过滤 JSON 对象中的键值对,条件使用 [Lambda 表达式](/cn/sql/stored-procedure-scripting/#lambda-expressions)定义。
8+
根据指定条件过滤 JSON 对象中的键值对,条件使用 [Lambda 表达式](../../../30-stored-procedure-scripting/index.md#lambda-表达式)定义。
99

1010
## 语法
1111

@@ -29,4 +29,4 @@ SELECT MAP_FILTER('{"status":"active", "user":"admin", "time":"2024-11-01"}'::VA
2929
├─────────────────────┤
3030
│ {"status":"active"} │
3131
└─────────────────────┘
32-
```
32+
```

docs/en/sql-reference/20-sql-functions/10-semi-structured-functions/1-array/array-transform.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import FunctionDescription from '@site/src/components/FunctionDescription';
66

77
<FunctionDescription description="Introduced or updated: v1.2.762"/>
88

9-
Transforms each element of a JSON array using a specified transformation Lambda expression. For more information about Lambda expression, see [Lambda Expressions](/sql/stored-procedure-scripting/#lambda-expressions).
9+
Transforms each element of a JSON array using a specified transformation Lambda expression. For more information about Lambda expression, see [Lambda Expressions](../../../30-stored-procedure-scripting/index.md#lambda-expressions).
1010

1111
## Syntax
1212

docs/en/sql-reference/20-sql-functions/10-semi-structured-functions/3-map/map-filter.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import FunctionDescription from '@site/src/components/FunctionDescription';
55

66
<FunctionDescription description="Introduced or updated: v1.2.762"/>
77

8-
Filters key-value pairs in a JSON object based on a specified condition, defined using a [lambda expression](/sql/stored-procedure-scripting/#lambda-expressions).
8+
Filters key-value pairs in a JSON object based on a specified condition, defined using a [lambda expression](../../../30-stored-procedure-scripting/index.md#lambda-expressions).
99

1010
## Syntax
1111

0 commit comments

Comments
 (0)