fix(sql): hotfix typos in sql window functions doc

pull/6372/head^2
Scott Anderson 2025-09-11 08:58:47 -06:00
parent 8f729f9500
commit 988aef7e07
1 changed files with 2 additions and 14 deletions

View File

@ -329,8 +329,8 @@ each frame that the window function operates on.
- [UNBOUNDED PRECEDING](#unbounded-preceding)
- [offset PRECEDING](#offset-preceding)
- CURRENT_ROW](#current-row)
- [offset> FOLLOWING](#offset-following)
- [CURRENT_ROW](#current-row)
- [offset FOLLOWING](#offset-following)
- [UNBOUNDED FOLLOWING](#unbounded-following)
##### UNBOUNDED PRECEDING
@ -369,18 +369,6 @@ For example, `3 FOLLOWING` includes 3 rows after the current row.
##### UNBOUNDED FOLLOWING
Starts at the current row and ends at the last row of the partition.
##### offset FOLLOWING
Use a specified offset of [frame units](#frame-units) _after_ the current row
as a frame boundary.
```sql
offset FOLLOWING
```
##### UNBOUNDED FOLLOWING
Use the current row to the end of the current partition the frame boundary.
```sql