-
Notifications
You must be signed in to change notification settings - Fork 1.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
doc-gen: migrate scalar functions (string) documentation 2/4 #13925
base: main
Are you sure you want to change the base?
doc-gen: migrate scalar functions (string) documentation 2/4 #13925
Conversation
Did you run the doc generation script prior to pushing this change? The doc diff seems ... odd |
@@ -1697,8 +1697,8 @@ upper(str) | |||
|
|||
**Related functions**: | |||
|
|||
- [initcap](#initcap) | |||
- [lower](#lower) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
hm, why we have this change? 🤔 its not critical but last revision was better as it sorted
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ah, I overlooked the sorting part. You're right. I'll revert it back. Thanks for catching this! 👍
@@ -971,8 +971,8 @@ concat_ws(separator, str[, ..., str_n]) | |||
|
|||
#### Arguments | |||
|
|||
- **separator**: Separator to insert between concatenated strings. | |||
- **str**: String expression to operate on. Can be a constant, column, or function, and any combination of operators. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think separator
should come first in order like it is in the function signature
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I tried changing the order between argument and standard argument in user_doc()
, but the documentation order didn't change. Is the order of content sections fixed?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I will check that
Which issue does this PR close?
Part of #13671 .
Rationale for this change
What changes are included in this PR?
As discussed in #13671 , this PR will migrate the parts of builtin string functions documentation that currently support migration.
Are these changes tested?
Are there any user-facing changes?