From 8571b30feb5e1621392493b1138a323ce84aa30f Mon Sep 17 00:00:00 2001 From: Adam Reeve Date: Mon, 4 Aug 2025 15:37:42 +1200 Subject: [PATCH] Fix failing documentation check --- datafusion/functions-window/src/row_number.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/datafusion/functions-window/src/row_number.rs b/datafusion/functions-window/src/row_number.rs index 01f52380bae9..19d076e052c5 100644 --- a/datafusion/functions-window/src/row_number.rs +++ b/datafusion/functions-window/src/row_number.rs @@ -46,7 +46,7 @@ define_udwf_and_expr!( doc_section(label = "Ranking Functions"), description = "Number of the current row within its partition, counting from 1.", syntax_example = "row_number()", - sql_example = r" + sql_example = r#" ```sql -- Example usage of the row_number window function: SELECT department, @@ -65,7 +65,7 @@ FROM employees; | Engineering | 80000 | 2 | +-------------+--------+---------+ ``` -#" +"# )] #[derive(Debug)] pub struct RowNumber {