Update docs/en/sql-reference/window-functions/leadInFrame.md

Co-authored-by: János Benjamin Antal <antaljanosbenjamin@users.noreply.github.com>
This commit is contained in:
Denny Crane 2024-11-26 09:21:58 -04:00 committed by GitHub
parent cc0f8271e2
commit 0ebee19f2e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -11,7 +11,7 @@ Returns a value evaluated at the row that is offset rows after the current row w
:::warning
`leadInFrame` behavior differs from the standard SQL `lead` window function.
Clickhouse window function `leadInFrame` respects the window frame.
To get behavior identical to the `lead`, use `rows between unbounded preceding and unbounded following`.
To get behavior identical to the `lead`, use `ROWS BETWEEN UNBOUNDED PRECEDING AND UNBOUNDED FOLLOWING`.
:::
**Syntax**