Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions datafusion/functions-window/src/row_number.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand All @@ -65,7 +65,7 @@ FROM employees;
| Engineering | 80000 | 2 |
+-------------+--------+---------+
```
#"
"#
)]
#[derive(Debug)]
pub struct RowNumber {
Expand Down