Skip to content

Commit 228db6c

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

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
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/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 表达式](/sql/sql-reference/stored-procedure-scripting/#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 表达式](/sql/sql-reference/stored-procedure-scripting/#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+
```

0 commit comments

Comments
 (0)