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 7ae2d81e9bc3 [MINOR][DOCS] Fix miss semicolon on insert example sql
7ae2d81e9bc3 is described below

commit 7ae2d81e9bc31a9549775faa6f5adf870198ac44
Author: camilesing <[email protected]>
AuthorDate: Sat Nov 23 11:17:52 2024 +0100

    [MINOR][DOCS] Fix miss semicolon on insert example sql
    
    ### What changes were proposed in this pull request?
    
     fix miss semicolon on insert example sql
    
    ### Why are the changes needed?
    
    fix miss semicolon on insert 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 #48942 from camilesing/fix_docs_miss_semicolon.
    
    Authored-by: camilesing <[email protected]>
    Signed-off-by: Max Gekk <[email protected]>
---
 docs/sql-ref-syntax-dml-insert-table.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docs/sql-ref-syntax-dml-insert-table.md 
b/docs/sql-ref-syntax-dml-insert-table.md
index 6ca062e08174..6f85d4401d3b 100644
--- a/docs/sql-ref-syntax-dml-insert-table.md
+++ b/docs/sql-ref-syntax-dml-insert-table.md
@@ -379,7 +379,7 @@ SELECT * FROM persons2;
 +-------------+--------------------------+---------+
 
 -- in an atomic operation, 1) delete rows with ssn = 123456789 and 2) insert 
rows from persons2 
-INSERT INTO persons REPLACE WHERE ssn = 123456789 SELECT * FROM persons2
+INSERT INTO persons REPLACE WHERE ssn = 123456789 SELECT * FROM persons2;
 
 SELECT * FROM persons;
 +-------------+--------------------------+---------+


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to