We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6d9b76e commit 66d6995Copy full SHA for 66d6995
datafusion/functions-window/src/row_number.rs
@@ -46,7 +46,7 @@ define_udwf_and_expr!(
46
doc_section(label = "Ranking Functions"),
47
description = "Number of the current row within its partition, counting from 1.",
48
syntax_example = "row_number()",
49
- sql_example = r"
+ sql_example = r#"
50
```sql
51
-- Example usage of the row_number window function:
52
SELECT department,
@@ -65,7 +65,7 @@ FROM employees;
65
| Engineering | 80000 | 2 |
66
+-------------+--------+---------+
67
```
68
-#"
+"#
69
)]
70
#[derive(Debug)]
71
pub struct RowNumber {
0 commit comments