From 0ebee19f2e3494df1c53b1d260fce31472772dcb Mon Sep 17 00:00:00 2001 From: Denny Crane Date: Tue, 26 Nov 2024 09:21:58 -0400 Subject: [PATCH] Update docs/en/sql-reference/window-functions/leadInFrame.md MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: János Benjamin Antal --- docs/en/sql-reference/window-functions/leadInFrame.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/en/sql-reference/window-functions/leadInFrame.md b/docs/en/sql-reference/window-functions/leadInFrame.md index 16c7aefd81a..c2bc2f525c5 100644 --- a/docs/en/sql-reference/window-functions/leadInFrame.md +++ b/docs/en/sql-reference/window-functions/leadInFrame.md @@ -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**