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/incubator-paimon.git


The following commit(s) were added to refs/heads/master by this push:
     new 6dc0352ca [doc] Use correct parameters for Presto & Trino (#1717)
6dc0352ca is described below

commit 6dc0352caeff2bff0c5acb8813312a3e94c2600b
Author: Kunni <[email protected]>
AuthorDate: Thu Aug 3 16:37:29 2023 +0800

    [doc] Use correct parameters for Presto & Trino (#1717)
---
 docs/content/engines/presto.md | 6 +++---
 docs/content/engines/trino.md  | 6 +++---
 2 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/docs/content/engines/presto.md b/docs/content/engines/presto.md
index 28a68b396..4687c963b 100644
--- a/docs/content/engines/presto.md
+++ b/docs/content/engines/presto.md
@@ -99,7 +99,7 @@ If you are using HDFS, choose one of the following ways to 
configure your HDFS:
 
 ## Kerberos
 
-You can configure kerberos keytag file when using KERBEROS authentication in 
the properties.
+You can configure kerberos keytab file when using KERBEROS authentication in 
the properties.
 
 ```
 security.kerberos.login.principal=hadoop-user
@@ -126,7 +126,7 @@ CREATE TABLE paimon.test_db.orders (
 WITH (
     file_format = 'ORC',
     primary_key = ARRAY['order_key','order_date'],
-    partitioned_by = ARRAY['orderdate'],
+    partitioned_by = ARRAY['order_date'],
     bucket = '2',
     bucket_key = 'order_key',
     changelog_producer = 'input'
@@ -145,7 +145,7 @@ CREATE TABLE paimon.test_db.orders (
 WITH (
     file_format = 'ORC',
     primary_key = ARRAY['order_key','order_date'],
-    partitioned_by = ARRAY['orderdate'],
+    partitioned_by = ARRAY['order_date'],
     bucket = '2',
     bucket_key = 'order_key',
     changelog_producer = 'input'
diff --git a/docs/content/engines/trino.md b/docs/content/engines/trino.md
index 42aa0ac8e..986973c35 100644
--- a/docs/content/engines/trino.md
+++ b/docs/content/engines/trino.md
@@ -124,7 +124,7 @@ If you are using HDFS, choose one of the following ways to 
configure your HDFS:
 
 ## Kerberos
 
-You can configure kerberos keytag file when using KERBEROS authentication in 
the properties.
+You can configure kerberos keytab file when using KERBEROS authentication in 
the properties.
 
 ```
 security.kerberos.login.principal=hadoop-user
@@ -151,7 +151,7 @@ CREATE TABLE paimon.test_db.orders (
 WITH (
     file_format = 'ORC',
     primary_key = ARRAY['order_key','order_date'],
-    partitioned_by = ARRAY['orderdate'],
+    partitioned_by = ARRAY['order_date'],
     bucket = '2',
     bucket_key = 'order_key',
     changelog_producer = 'input'
@@ -170,7 +170,7 @@ CREATE TABLE paimon.test_db.orders (
 WITH (
     file_format = 'ORC',
     primary_key = ARRAY['order_key','order_date'],
-    partitioned_by = ARRAY['orderdate'],
+    partitioned_by = ARRAY['order_date'],
     bucket = '2',
     bucket_key = 'order_key',
     changelog_producer = 'input'

Reply via email to