This is an automated email from the ASF dual-hosted git repository.
yiguolei 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 82aea7cb5a1 [docs](numbers) minor fix of number conversion docs (#2665)
82aea7cb5a1 is described below
commit 82aea7cb5a10a1a1f112f06dfebbd20ad9bdee4b
Author: TengJianPing <[email protected]>
AuthorDate: Mon Jul 28 14:17:15 2025 +0800
[docs](numbers) minor fix of number conversion docs (#2665)
## Versions
- [x] dev
- [x] 3.0
- [x] 2.1
- [ ] 2.0
## Languages
- [x] Chinese
- [x] English
## Docs Checklist
- [ ] Checked by AI
- [ ] Test Cases Built
---
.../sql-data-types/conversion/float-double-conversion.md | 2 +-
.../basic-element/sql-data-types/conversion/int-conversion.md | 2 +-
docs/sql-manual/sql-functions/aggregate-functions/window-funnel.md | 4 ++++
.../sql-data-types/conversion/float-double-conversion.md | 2 +-
.../basic-element/sql-data-types/conversion/int-conversion.md | 2 +-
.../sql-manual/sql-functions/aggregate-functions/window-funnel.md | 6 +++++-
.../sql-manual/sql-functions/aggregate-functions/window-funnel.md | 6 +++++-
.../sql-manual/sql-functions/aggregate-functions/window-funnel.md | 6 +++++-
.../sql-manual/sql-functions/aggregate-functions/window-funnel.md | 4 ++++
.../sql-manual/sql-functions/aggregate-functions/window-funnel.md | 4 ++++
10 files changed, 31 insertions(+), 7 deletions(-)
diff --git
a/docs/sql-manual/basic-element/sql-data-types/conversion/float-double-conversion.md
b/docs/sql-manual/basic-element/sql-data-types/conversion/float-double-conversion.md
index 0ffe8fbc7fa..c404c8867d6 100644
---
a/docs/sql-manual/basic-element/sql-data-types/conversion/float-double-conversion.md
+++
b/docs/sql-manual/basic-element/sql-data-types/conversion/float-double-conversion.md
@@ -1,6 +1,6 @@
---
{
- "title": "Convert to float/double",
+ "title": "Convert to FLOAT/DOUBLE",
"language": "en"
}
---
diff --git
a/docs/sql-manual/basic-element/sql-data-types/conversion/int-conversion.md
b/docs/sql-manual/basic-element/sql-data-types/conversion/int-conversion.md
index 75a57f3e37d..c8110f20b04 100644
--- a/docs/sql-manual/basic-element/sql-data-types/conversion/int-conversion.md
+++ b/docs/sql-manual/basic-element/sql-data-types/conversion/int-conversion.md
@@ -1,6 +1,6 @@
---
{
- "title": "Cast to int",
+ "title": "Cast to INT",
"language": "en"
}
---
diff --git a/docs/sql-manual/sql-functions/aggregate-functions/window-funnel.md
b/docs/sql-manual/sql-functions/aggregate-functions/window-funnel.md
index 24b649ca676..21396de7ec4 100644
--- a/docs/sql-manual/sql-functions/aggregate-functions/window-funnel.md
+++ b/docs/sql-manual/sql-functions/aggregate-functions/window-funnel.md
@@ -31,9 +31,13 @@ WINDOW_FUNNEL(<window>, <mode>, <timestamp>, <event_1>[,
event_2, ... , event_n]
| `<event_n>` | evnet_n is boolean expression like eventID = 1004 |
**Mode**
+
- `default`: Defualt mode.
+
- `deduplication`: If the same event holds for the sequence of events,
then such repeating event interrupts further processing. E.g. the array
parameter is [event1='A', event2='B', event3='C', event4='D'], and the original
event chain is "A-B-C-B-D". Since event B repeats, the filtered event chain can
only be "A-B-C" and the max event level is 3.
+
- `fixed`: Don't allow interventions of other events. E.g. the array
parameter is [event1='A', event2='B', event3='C', event4='D'], and the original
event chain is A->B->D->C, it stops finding A->B->C at the D and the max event
level is 2.
+
- `increase`: Apply conditions only to events with strictly increasing
timestamps.
## Return Value
diff --git
a/i18n/zh-CN/docusaurus-plugin-content-docs/current/sql-manual/basic-element/sql-data-types/conversion/float-double-conversion.md
b/i18n/zh-CN/docusaurus-plugin-content-docs/current/sql-manual/basic-element/sql-data-types/conversion/float-double-conversion.md
index 13019c59679..c760e8a20ac 100644
---
a/i18n/zh-CN/docusaurus-plugin-content-docs/current/sql-manual/basic-element/sql-data-types/conversion/float-double-conversion.md
+++
b/i18n/zh-CN/docusaurus-plugin-content-docs/current/sql-manual/basic-element/sql-data-types/conversion/float-double-conversion.md
@@ -1,6 +1,6 @@
---
{
- "title": "转换为 float/double",
+ "title": "转换为 FLOAT/DOUBLE",
"language": "zh-CN"
}
---
diff --git
a/i18n/zh-CN/docusaurus-plugin-content-docs/current/sql-manual/basic-element/sql-data-types/conversion/int-conversion.md
b/i18n/zh-CN/docusaurus-plugin-content-docs/current/sql-manual/basic-element/sql-data-types/conversion/int-conversion.md
index 9abd10cf43b..68ec70c15a4 100644
---
a/i18n/zh-CN/docusaurus-plugin-content-docs/current/sql-manual/basic-element/sql-data-types/conversion/int-conversion.md
+++
b/i18n/zh-CN/docusaurus-plugin-content-docs/current/sql-manual/basic-element/sql-data-types/conversion/int-conversion.md
@@ -1,6 +1,6 @@
---
{
- "title": "转换为 int",
+ "title": "转换为 INT",
"language": "zh-CN"
}
---
diff --git
a/i18n/zh-CN/docusaurus-plugin-content-docs/current/sql-manual/sql-functions/aggregate-functions/window-funnel.md
b/i18n/zh-CN/docusaurus-plugin-content-docs/current/sql-manual/sql-functions/aggregate-functions/window-funnel.md
index 55c682c013f..0120b12e2a0 100644
---
a/i18n/zh-CN/docusaurus-plugin-content-docs/current/sql-manual/sql-functions/aggregate-functions/window-funnel.md
+++
b/i18n/zh-CN/docusaurus-plugin-content-docs/current/sql-manual/sql-functions/aggregate-functions/window-funnel.md
@@ -12,7 +12,7 @@ WINDOW_FUNNEL 函数用于分析用户行为序列,它在指定的时间窗口
漏斗分析函数按照如下算法工作:
- 搜索到满足满足条件的第一个事件,设置事件长度为 1,此时开始滑动时间窗口计时。
-- 如果事件在时间窗口内按照指定的顺序发生,时间长度累计增加。如果事件没有按照指定的顺序发生,时间长度不增加。
+- 如果事件在时间窗口内按照指定的顺序发生,事件长度累计增加。如果事件没有按照指定的顺序发生,事件长度不增加。
- 如果搜索到多个事件链,漏斗分析函数返回最大的长度。
## 语法
@@ -31,9 +31,13 @@ WINDOW_FUNNEL(<window>, <mode>, <timestamp>, <event_1>[,
event_2, ... , event_n]
| `<event_n>` | 表示事件的布尔表达式。 |
**模式**
+
- `default`: 默认模式。
+
- `deduplication`: 当某个事件重复发生时,这个重复发生的事件会阻止后续的处理过程。如,指定事件链为[event1='A',
event2='B', event3='C', event4='D'],原始事件链为"A-B-C-B-D"。由于 B 事件重复,最终的结果事件链为
A-B-C,最大长度为 3。
+
- `fixed`: 不允许事件的顺序发生交错,即事件发生的顺序必须和指定的事件链顺序一致。如,指定事件链为[event1='A',
event2='B', event3='C', event4='D'],原始事件链为"A-B-D-C",则结果事件链为 A-B,最大长度为 2
+
- `increase`: 选中的事件的时间戳必须按照指定事件链严格递增。
## 返回值
diff --git
a/i18n/zh-CN/docusaurus-plugin-content-docs/version-2.1/sql-manual/sql-functions/aggregate-functions/window-funnel.md
b/i18n/zh-CN/docusaurus-plugin-content-docs/version-2.1/sql-manual/sql-functions/aggregate-functions/window-funnel.md
index 55c682c013f..0120b12e2a0 100644
---
a/i18n/zh-CN/docusaurus-plugin-content-docs/version-2.1/sql-manual/sql-functions/aggregate-functions/window-funnel.md
+++
b/i18n/zh-CN/docusaurus-plugin-content-docs/version-2.1/sql-manual/sql-functions/aggregate-functions/window-funnel.md
@@ -12,7 +12,7 @@ WINDOW_FUNNEL 函数用于分析用户行为序列,它在指定的时间窗口
漏斗分析函数按照如下算法工作:
- 搜索到满足满足条件的第一个事件,设置事件长度为 1,此时开始滑动时间窗口计时。
-- 如果事件在时间窗口内按照指定的顺序发生,时间长度累计增加。如果事件没有按照指定的顺序发生,时间长度不增加。
+- 如果事件在时间窗口内按照指定的顺序发生,事件长度累计增加。如果事件没有按照指定的顺序发生,事件长度不增加。
- 如果搜索到多个事件链,漏斗分析函数返回最大的长度。
## 语法
@@ -31,9 +31,13 @@ WINDOW_FUNNEL(<window>, <mode>, <timestamp>, <event_1>[,
event_2, ... , event_n]
| `<event_n>` | 表示事件的布尔表达式。 |
**模式**
+
- `default`: 默认模式。
+
- `deduplication`: 当某个事件重复发生时,这个重复发生的事件会阻止后续的处理过程。如,指定事件链为[event1='A',
event2='B', event3='C', event4='D'],原始事件链为"A-B-C-B-D"。由于 B 事件重复,最终的结果事件链为
A-B-C,最大长度为 3。
+
- `fixed`: 不允许事件的顺序发生交错,即事件发生的顺序必须和指定的事件链顺序一致。如,指定事件链为[event1='A',
event2='B', event3='C', event4='D'],原始事件链为"A-B-D-C",则结果事件链为 A-B,最大长度为 2
+
- `increase`: 选中的事件的时间戳必须按照指定事件链严格递增。
## 返回值
diff --git
a/i18n/zh-CN/docusaurus-plugin-content-docs/version-3.0/sql-manual/sql-functions/aggregate-functions/window-funnel.md
b/i18n/zh-CN/docusaurus-plugin-content-docs/version-3.0/sql-manual/sql-functions/aggregate-functions/window-funnel.md
index 55c682c013f..0120b12e2a0 100644
---
a/i18n/zh-CN/docusaurus-plugin-content-docs/version-3.0/sql-manual/sql-functions/aggregate-functions/window-funnel.md
+++
b/i18n/zh-CN/docusaurus-plugin-content-docs/version-3.0/sql-manual/sql-functions/aggregate-functions/window-funnel.md
@@ -12,7 +12,7 @@ WINDOW_FUNNEL 函数用于分析用户行为序列,它在指定的时间窗口
漏斗分析函数按照如下算法工作:
- 搜索到满足满足条件的第一个事件,设置事件长度为 1,此时开始滑动时间窗口计时。
-- 如果事件在时间窗口内按照指定的顺序发生,时间长度累计增加。如果事件没有按照指定的顺序发生,时间长度不增加。
+- 如果事件在时间窗口内按照指定的顺序发生,事件长度累计增加。如果事件没有按照指定的顺序发生,事件长度不增加。
- 如果搜索到多个事件链,漏斗分析函数返回最大的长度。
## 语法
@@ -31,9 +31,13 @@ WINDOW_FUNNEL(<window>, <mode>, <timestamp>, <event_1>[,
event_2, ... , event_n]
| `<event_n>` | 表示事件的布尔表达式。 |
**模式**
+
- `default`: 默认模式。
+
- `deduplication`: 当某个事件重复发生时,这个重复发生的事件会阻止后续的处理过程。如,指定事件链为[event1='A',
event2='B', event3='C', event4='D'],原始事件链为"A-B-C-B-D"。由于 B 事件重复,最终的结果事件链为
A-B-C,最大长度为 3。
+
- `fixed`: 不允许事件的顺序发生交错,即事件发生的顺序必须和指定的事件链顺序一致。如,指定事件链为[event1='A',
event2='B', event3='C', event4='D'],原始事件链为"A-B-D-C",则结果事件链为 A-B,最大长度为 2
+
- `increase`: 选中的事件的时间戳必须按照指定事件链严格递增。
## 返回值
diff --git
a/versioned_docs/version-2.1/sql-manual/sql-functions/aggregate-functions/window-funnel.md
b/versioned_docs/version-2.1/sql-manual/sql-functions/aggregate-functions/window-funnel.md
index 24b649ca676..21396de7ec4 100644
---
a/versioned_docs/version-2.1/sql-manual/sql-functions/aggregate-functions/window-funnel.md
+++
b/versioned_docs/version-2.1/sql-manual/sql-functions/aggregate-functions/window-funnel.md
@@ -31,9 +31,13 @@ WINDOW_FUNNEL(<window>, <mode>, <timestamp>, <event_1>[,
event_2, ... , event_n]
| `<event_n>` | evnet_n is boolean expression like eventID = 1004 |
**Mode**
+
- `default`: Defualt mode.
+
- `deduplication`: If the same event holds for the sequence of events,
then such repeating event interrupts further processing. E.g. the array
parameter is [event1='A', event2='B', event3='C', event4='D'], and the original
event chain is "A-B-C-B-D". Since event B repeats, the filtered event chain can
only be "A-B-C" and the max event level is 3.
+
- `fixed`: Don't allow interventions of other events. E.g. the array
parameter is [event1='A', event2='B', event3='C', event4='D'], and the original
event chain is A->B->D->C, it stops finding A->B->C at the D and the max event
level is 2.
+
- `increase`: Apply conditions only to events with strictly increasing
timestamps.
## Return Value
diff --git
a/versioned_docs/version-3.0/sql-manual/sql-functions/aggregate-functions/window-funnel.md
b/versioned_docs/version-3.0/sql-manual/sql-functions/aggregate-functions/window-funnel.md
index 24b649ca676..21396de7ec4 100644
---
a/versioned_docs/version-3.0/sql-manual/sql-functions/aggregate-functions/window-funnel.md
+++
b/versioned_docs/version-3.0/sql-manual/sql-functions/aggregate-functions/window-funnel.md
@@ -31,9 +31,13 @@ WINDOW_FUNNEL(<window>, <mode>, <timestamp>, <event_1>[,
event_2, ... , event_n]
| `<event_n>` | evnet_n is boolean expression like eventID = 1004 |
**Mode**
+
- `default`: Defualt mode.
+
- `deduplication`: If the same event holds for the sequence of events,
then such repeating event interrupts further processing. E.g. the array
parameter is [event1='A', event2='B', event3='C', event4='D'], and the original
event chain is "A-B-C-B-D". Since event B repeats, the filtered event chain can
only be "A-B-C" and the max event level is 3.
+
- `fixed`: Don't allow interventions of other events. E.g. the array
parameter is [event1='A', event2='B', event3='C', event4='D'], and the original
event chain is A->B->D->C, it stops finding A->B->C at the D and the max event
level is 2.
+
- `increase`: Apply conditions only to events with strictly increasing
timestamps.
## Return Value
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]