This is an automated email from the ASF dual-hosted git repository.

lzljs3620320 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/paimon.git


The following commit(s) were added to refs/heads/master by this push:
     new 9ff5d79dba [doc] Fix typo in flink/sql-ddl.md (#6476)
9ff5d79dba is described below

commit 9ff5d79dbab2a7289b33a30926e54091dbadc4b5
Author: YangJie <[email protected]>
AuthorDate: Mon Oct 27 20:31:13 2025 +0800

    [doc] Fix typo in flink/sql-ddl.md (#6476)
---
 docs/content/flink/sql-ddl.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docs/content/flink/sql-ddl.md b/docs/content/flink/sql-ddl.md
index 4626704270..21845a59be 100644
--- a/docs/content/flink/sql-ddl.md
+++ b/docs/content/flink/sql-ddl.md
@@ -213,7 +213,7 @@ note that partition fields and primary key fields can not 
be specified.
 
 ## Create Table As Select
 
-Table can be created and populated by the results of a query, for example, we 
have a sql like this: `CREATE TABLE table_b AS SELECT id, name FORM table_a`,
+Table can be created and populated by the results of a query, for example, we 
have a sql like this: `CREATE TABLE table_b AS SELECT id, name FROM table_a`,
 The resulting table `table_b` will be equivalent to create the table and 
insert the data with the following statement:
 `CREATE TABLE table_b (id INT, name STRING); INSERT INTO table_b SELECT id, 
name FROM table_a;`
 

Reply via email to