Skip to content

Commit 82aea7c

Browse files
authored
[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
1 parent 5e8a22d commit 82aea7c

File tree

10 files changed

+31
-7
lines changed

10 files changed

+31
-7
lines changed

docs/sql-manual/basic-element/sql-data-types/conversion/float-double-conversion.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
{
3-
"title": "Convert to float/double",
3+
"title": "Convert to FLOAT/DOUBLE",
44
"language": "en"
55
}
66
---

docs/sql-manual/basic-element/sql-data-types/conversion/int-conversion.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
{
3-
"title": "Cast to int",
3+
"title": "Cast to INT",
44
"language": "en"
55
}
66
---

docs/sql-manual/sql-functions/aggregate-functions/window-funnel.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,13 @@ WINDOW_FUNNEL(<window>, <mode>, <timestamp>, <event_1>[, event_2, ... , event_n]
3131
| `<event_n>` | evnet_n is boolean expression like eventID = 1004 |
3232

3333
**Mode**
34+
3435
- `default`: Defualt mode.
36+
3537
- `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.
38+
3639
- `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.
40+
3741
- `increase`: Apply conditions only to events with strictly increasing timestamps.
3842

3943
## Return Value

i18n/zh-CN/docusaurus-plugin-content-docs/current/sql-manual/basic-element/sql-data-types/conversion/float-double-conversion.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
{
3-
"title": "转换为 float/double",
3+
"title": "转换为 FLOAT/DOUBLE",
44
"language": "zh-CN"
55
}
66
---

i18n/zh-CN/docusaurus-plugin-content-docs/current/sql-manual/basic-element/sql-data-types/conversion/int-conversion.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
{
3-
"title": "转换为 int",
3+
"title": "转换为 INT",
44
"language": "zh-CN"
55
}
66
---

i18n/zh-CN/docusaurus-plugin-content-docs/current/sql-manual/sql-functions/aggregate-functions/window-funnel.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ WINDOW_FUNNEL 函数用于分析用户行为序列,它在指定的时间窗口
1212
漏斗分析函数按照如下算法工作:
1313

1414
- 搜索到满足满足条件的第一个事件,设置事件长度为 1,此时开始滑动时间窗口计时。
15-
- 如果事件在时间窗口内按照指定的顺序发生,时间长度累计增加。如果事件没有按照指定的顺序发生,时间长度不增加
15+
- 如果事件在时间窗口内按照指定的顺序发生,事件长度累计增加。如果事件没有按照指定的顺序发生,事件长度不增加
1616
- 如果搜索到多个事件链,漏斗分析函数返回最大的长度。
1717

1818
## 语法
@@ -31,9 +31,13 @@ WINDOW_FUNNEL(<window>, <mode>, <timestamp>, <event_1>[, event_2, ... , event_n]
3131
| `<event_n>` | 表示事件的布尔表达式。 |
3232

3333
**模式**
34+
3435
- `default`: 默认模式。
36+
3537
- `deduplication`: 当某个事件重复发生时,这个重复发生的事件会阻止后续的处理过程。如,指定事件链为[event1='A', event2='B', event3='C', event4='D'],原始事件链为"A-B-C-B-D"。由于 B 事件重复,最终的结果事件链为 A-B-C,最大长度为 3。
38+
3639
- `fixed`: 不允许事件的顺序发生交错,即事件发生的顺序必须和指定的事件链顺序一致。如,指定事件链为[event1='A', event2='B', event3='C', event4='D'],原始事件链为"A-B-D-C",则结果事件链为 A-B,最大长度为 2
40+
3741
- `increase`: 选中的事件的时间戳必须按照指定事件链严格递增。
3842

3943
## 返回值

i18n/zh-CN/docusaurus-plugin-content-docs/version-2.1/sql-manual/sql-functions/aggregate-functions/window-funnel.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ WINDOW_FUNNEL 函数用于分析用户行为序列,它在指定的时间窗口
1212
漏斗分析函数按照如下算法工作:
1313

1414
- 搜索到满足满足条件的第一个事件,设置事件长度为 1,此时开始滑动时间窗口计时。
15-
- 如果事件在时间窗口内按照指定的顺序发生,时间长度累计增加。如果事件没有按照指定的顺序发生,时间长度不增加
15+
- 如果事件在时间窗口内按照指定的顺序发生,事件长度累计增加。如果事件没有按照指定的顺序发生,事件长度不增加
1616
- 如果搜索到多个事件链,漏斗分析函数返回最大的长度。
1717

1818
## 语法
@@ -31,9 +31,13 @@ WINDOW_FUNNEL(<window>, <mode>, <timestamp>, <event_1>[, event_2, ... , event_n]
3131
| `<event_n>` | 表示事件的布尔表达式。 |
3232

3333
**模式**
34+
3435
- `default`: 默认模式。
36+
3537
- `deduplication`: 当某个事件重复发生时,这个重复发生的事件会阻止后续的处理过程。如,指定事件链为[event1='A', event2='B', event3='C', event4='D'],原始事件链为"A-B-C-B-D"。由于 B 事件重复,最终的结果事件链为 A-B-C,最大长度为 3。
38+
3639
- `fixed`: 不允许事件的顺序发生交错,即事件发生的顺序必须和指定的事件链顺序一致。如,指定事件链为[event1='A', event2='B', event3='C', event4='D'],原始事件链为"A-B-D-C",则结果事件链为 A-B,最大长度为 2
40+
3741
- `increase`: 选中的事件的时间戳必须按照指定事件链严格递增。
3842

3943
## 返回值

i18n/zh-CN/docusaurus-plugin-content-docs/version-3.0/sql-manual/sql-functions/aggregate-functions/window-funnel.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ WINDOW_FUNNEL 函数用于分析用户行为序列,它在指定的时间窗口
1212
漏斗分析函数按照如下算法工作:
1313

1414
- 搜索到满足满足条件的第一个事件,设置事件长度为 1,此时开始滑动时间窗口计时。
15-
- 如果事件在时间窗口内按照指定的顺序发生,时间长度累计增加。如果事件没有按照指定的顺序发生,时间长度不增加
15+
- 如果事件在时间窗口内按照指定的顺序发生,事件长度累计增加。如果事件没有按照指定的顺序发生,事件长度不增加
1616
- 如果搜索到多个事件链,漏斗分析函数返回最大的长度。
1717

1818
## 语法
@@ -31,9 +31,13 @@ WINDOW_FUNNEL(<window>, <mode>, <timestamp>, <event_1>[, event_2, ... , event_n]
3131
| `<event_n>` | 表示事件的布尔表达式。 |
3232

3333
**模式**
34+
3435
- `default`: 默认模式。
36+
3537
- `deduplication`: 当某个事件重复发生时,这个重复发生的事件会阻止后续的处理过程。如,指定事件链为[event1='A', event2='B', event3='C', event4='D'],原始事件链为"A-B-C-B-D"。由于 B 事件重复,最终的结果事件链为 A-B-C,最大长度为 3。
38+
3639
- `fixed`: 不允许事件的顺序发生交错,即事件发生的顺序必须和指定的事件链顺序一致。如,指定事件链为[event1='A', event2='B', event3='C', event4='D'],原始事件链为"A-B-D-C",则结果事件链为 A-B,最大长度为 2
40+
3741
- `increase`: 选中的事件的时间戳必须按照指定事件链严格递增。
3842

3943
## 返回值

versioned_docs/version-2.1/sql-manual/sql-functions/aggregate-functions/window-funnel.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,13 @@ WINDOW_FUNNEL(<window>, <mode>, <timestamp>, <event_1>[, event_2, ... , event_n]
3131
| `<event_n>` | evnet_n is boolean expression like eventID = 1004 |
3232

3333
**Mode**
34+
3435
- `default`: Defualt mode.
36+
3537
- `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.
38+
3639
- `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.
40+
3741
- `increase`: Apply conditions only to events with strictly increasing timestamps.
3842

3943
## Return Value

versioned_docs/version-3.0/sql-manual/sql-functions/aggregate-functions/window-funnel.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,13 @@ WINDOW_FUNNEL(<window>, <mode>, <timestamp>, <event_1>[, event_2, ... , event_n]
3131
| `<event_n>` | evnet_n is boolean expression like eventID = 1004 |
3232

3333
**Mode**
34+
3435
- `default`: Defualt mode.
36+
3537
- `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.
38+
3639
- `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.
40+
3741
- `increase`: Apply conditions only to events with strictly increasing timestamps.
3842

3943
## Return Value

0 commit comments

Comments
 (0)