Skip to content

Commit 7ae2d81

Browse files
camilesingMaxGekk
authored andcommitted
[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]>
1 parent 5bdaa72 commit 7ae2d81

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/sql-ref-syntax-dml-insert-table.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -379,7 +379,7 @@ SELECT * FROM persons2;
379379
+-------------+--------------------------+---------+
380380

381381
-- in an atomic operation, 1) delete rows with ssn = 123456789 and 2) insert rows from persons2
382-
INSERT INTO persons REPLACE WHERE ssn = 123456789 SELECT * FROM persons2
382+
INSERT INTO persons REPLACE WHERE ssn = 123456789 SELECT * FROM persons2;
383383

384384
SELECT * FROM persons;
385385
+-------------+--------------------------+---------+

0 commit comments

Comments
 (0)