Merge branch 'master' into patch-3

pull/6373/head
jaal2001 2025-09-11 17:28:05 +02:00 committed by GitHub
commit 8257144555
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
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