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

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


The following commit(s) were added to refs/heads/master by this push:
     new f083b149e [doc] Fix doc default-value typo error (#1821)
f083b149e is described below

commit f083b149e2f6e789e4cec457ade17b80ce271328
Author: wgcn <[email protected]>
AuthorDate: Tue Aug 15 18:06:09 2023 +0800

    [doc] Fix doc default-value typo error (#1821)
---
 docs/content/how-to/creating-tables.md | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/docs/content/how-to/creating-tables.md 
b/docs/content/how-to/creating-tables.md
index 9e1326ba8..bde1345e9 100644
--- a/docs/content/how-to/creating-tables.md
+++ b/docs/content/how-to/creating-tables.md
@@ -267,7 +267,7 @@ CREATE TABLE MyTable (
     PRIMARY KEY (dt, hh, user_id) NOT ENFORCED
 ) PARTITIONED BY (dt, hh)
 with(
-    'fields.item_id.deafult-value'='0'
+    'fields.item_id.default-value'='0'
 );
 ```
 
@@ -284,7 +284,7 @@ CREATE TABLE MyTable (
     hh STRING
 ) PARTITIONED BY (dt, hh) TBLPROPERTIES (
     'primary-key' = 'dt,hh,user_id',
-    'fields.item_id.deafult-value'='0'
+    'fields.item_id.default-value'='0'
 );
 ```
 
@@ -306,7 +306,7 @@ STORED BY 'org.apache.paimon.hive.PaimonStorageHandler'
 TBLPROPERTIES (
     'primary-key' = 'dt,hh,user_id',
     'partition'='dt,hh',
-    'fields.item_id.deafult-value'='0'
+    'fields.item_id.default-value'='0'
 );
 ```
 

Reply via email to