Skip to content

Commit 107cb5e

Browse files
authored
Fix function doc CI check (#19093)
## Which issue does this PR close? ## Rationale for this change CI is failing on main. For example see : https://github.com/apache/datafusion/actions/runs/19938148766/job/57168950868 ```diff diff --git a/docs/source/user-guide/sql/scalar_functions.md b/docs/source/user-guide/sql/scalar_functions.md index fab6221..c5380b2 100644 --- a/docs/source/user-guide/sql/scalar_functions.md +++ b/docs/source/user-guide/sql/scalar_functions.md @@ -2125,7 +2125,7 @@ upper(str) ### `uuid` -Returns [`UUID v4`](https://en.wikipedia.org/wiki/Universally_unique_identifier#Version_4_%28random%29) string value which is unique per row. +Returns [`UUID v4`](<https://en.wikipedia.org/wiki/Universally_unique_identifier#Version_4_(random)>) string value which is unique per row. ```sql uuid() ``` The problem is that I updated the markdown in #19088 but not the original code in the function ## What changes are included in this PR? Fix the issue ## Are these changes tested? Yes by CI ## Are there any user-facing changes? I will also file a ticket to track this testing hole: - #19095
1 parent d150af7 commit 107cb5e

File tree

1 file changed

+1
-1
lines changed
  • datafusion/functions/src/string

1 file changed

+1
-1
lines changed

datafusion/functions/src/string/uuid.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ use datafusion_macros::user_doc;
3131

3232
#[user_doc(
3333
doc_section(label = "String Functions"),
34-
description = "Returns [`UUID v4`](https://en.wikipedia.org/wiki/Universally_unique_identifier#Version_4_(random)) string value which is unique per row.",
34+
description = "Returns [`UUID v4`](https://en.wikipedia.org/wiki/Universally_unique_identifier#Version_4_%28random%29) string value which is unique per row.",
3535
syntax_example = "uuid()",
3636
sql_example = r#"```sql
3737
> select uuid();

0 commit comments

Comments
 (0)