Skip to content

Commit eddc9bf

Browse files
authored
fix gap dill docs (#200)
1 parent 33d820d commit eddc9bf

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

dir.yaml

+3
Original file line numberDiff line numberDiff line change
@@ -197,6 +197,9 @@
197197
- title_en: Math
198198
title_cn: 数学函数
199199
path: sql-reference/math
200+
- title_en: Gap Fill
201+
title_cn: 插值
202+
path: sql-reference/gap_fill
200203
#- title_en: String
201204
# title_cn: 字符串函数
202205
# path: sql-reference/string

zh_CN/sql-reference/gap_fill.md

+3
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,9 @@
2121
- 使用给定值填充:`fill_value(<aggregate_col>, <value>)`
2222
3. 使用 WHERE 从句给定查询的时间范围。
2323
- 时间范围必须为有限范围,即有限的起始时间戳与有限的结束时间戳。
24+
- 注意,插值的起始时间戳为 `min(p_min, d_min)`,终止时间戳为 `max(p_max, d_max)`
25+
- `p_min``p_max` 分别为查询条件中的时间范围的下界与上界。
26+
- `d_min``d_max` 分别为原始数据中最小时间戳与最大时间戳。
2427

2528
语法示例:
2629

0 commit comments

Comments
 (0)