This is an automated email from the ASF dual-hosted git repository.
github-bot pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/datafusion.git
The following commit(s) were added to refs/heads/main by this push:
new 5496c30431 fix: typo in sql/ddl (#19276)
5496c30431 is described below
commit 5496c30431ac4b4915cd597cf10f2f6191af2240
Author: mag1c1an1 <[email protected]>
AuthorDate: Thu Dec 11 17:42:46 2025 +0800
fix: typo in sql/ddl (#19276)
## Which issue does this PR close?
None, this is a tiny typo fix.
<!--
We generally require a GitHub issue to be filed for all bug fixes and
enhancements and this helps us generate change logs for our releases.
You can link an issue to this PR using the GitHub syntax. For example
`Closes #123` indicates that this PR will close issue #123.
-->
## Rationale for this change
<!--
Why are you proposing this change? If this is already explained clearly
in the issue then this section is not needed.
Explaining clearly why changes are proposed helps reviewers understand
your changes and offer better suggestions for fixes.
-->
Make datafusion doc great!
## What changes are included in this PR?
Change doc.
<!--
There is no need to duplicate the description in the issue here but it
is sometimes worth providing a summary of the individual changes in this
PR.
-->
## Are these changes tested?
No need to test code.
<!--
We typically require tests for all PRs in order to:
1. Prevent the code from being accidentally broken by subsequent changes
2. Serve as another way to document the expected behavior of the code
If tests are not included in your PR, please explain why (for example,
are they covered by existing tests)?
-->
## Are there any user-facing changes?
NO
<!--
If there are user-facing changes then we may require documentation to be
updated before approving the PR.
-->
<!--
If there are any breaking changes to public APIs, please add the `api
change` label.
-->
---
docs/source/user-guide/sql/ddl.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/docs/source/user-guide/sql/ddl.md
b/docs/source/user-guide/sql/ddl.md
index bd41f691bf..3a5c934ae8 100644
--- a/docs/source/user-guide/sql/ddl.md
+++ b/docs/source/user-guide/sql/ddl.md
@@ -71,7 +71,7 @@ LOCATION <literal>
<ordered_column_list> := (<column_name> <sort_clause>, ...)
-<key_value_list> := (<literal> <literal, <literal> <literal>, ...)
+<key_value_list> := (<literal> <literal>, <literal> <literal>, ...)
```
For a comprehensive list of format-specific options that can be specified in
the `OPTIONS` clause, see [Format Options](format_options.md).
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]