This is an automated email from the ASF dual-hosted git repository.
maxgekk pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/spark.git
The following commit(s) were added to refs/heads/master by this push:
new cbb16b9633af [MINOR][DOCS] Fix miss semicolon on create table example
sql
cbb16b9633af is described below
commit cbb16b9633afdcced2b00651d910ed2b59f09737
Author: camilesing <[email protected]>
AuthorDate: Thu Nov 21 11:24:13 2024 +0100
[MINOR][DOCS] Fix miss semicolon on create table example sql
### What changes were proposed in this pull request?
fix miss semicolon on create table example sql
### Why are the changes needed?
fix miss semicolon on create table example sql.
### Does this PR introduce _any_ user-facing change?
Yes. the patch fix docs miss semicolon sql.
### How was this patch tested?
Manually by inspecting generated docs.
### Was this patch authored or co-authored using generative AI tooling?
No.
Closes #48916 from camilesing/fix_docs_miss_semicolon.
Authored-by: camilesing <[email protected]>
Signed-off-by: Max Gekk <[email protected]>
---
docs/sql-ref-syntax-ddl-create-table-hiveformat.md | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/docs/sql-ref-syntax-ddl-create-table-hiveformat.md
b/docs/sql-ref-syntax-ddl-create-table-hiveformat.md
index b2f5957416a8..583e890f8305 100644
--- a/docs/sql-ref-syntax-ddl-create-table-hiveformat.md
+++ b/docs/sql-ref-syntax-ddl-create-table-hiveformat.md
@@ -178,7 +178,7 @@ CREATE EXTERNAL TABLE family (id INT, name STRING)
CREATE TABLE clustered_by_test1 (ID INT, AGE STRING)
CLUSTERED BY (ID)
INTO 4 BUCKETS
- STORED AS ORC
+ STORED AS ORC;
--Use `CLUSTERED BY` clause to create bucket table with `SORTED BY`
CREATE TABLE clustered_by_test2 (ID INT, NAME STRING)
@@ -186,7 +186,7 @@ CREATE TABLE clustered_by_test2 (ID INT, NAME STRING)
CLUSTERED BY (ID, NAME)
SORTED BY (ID ASC)
INTO 3 BUCKETS
- STORED AS PARQUET
+ STORED AS PARQUET;
```
### Related Statements
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]