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

pvary pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/iceberg.git


The following commit(s) were added to refs/heads/main by this push:
     new f6c934b479 Docs: Fix Hive table creation syntax errors (#12394)
f6c934b479 is described below

commit f6c934b479d81f16633fe8b0b6b245133f49cd94
Author: 码界探索 <[email protected]>
AuthorDate: Thu Feb 27 00:22:17 2025 +0800

    Docs: Fix Hive table creation syntax errors (#12394)
    
    Co-authored-by: velar <[email protected]>
---
 docs/docs/hive.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docs/docs/hive.md b/docs/docs/hive.md
index fd757cdd51..1aae5efd1e 100644
--- a/docs/docs/hive.md
+++ b/docs/docs/hive.md
@@ -284,7 +284,7 @@ You can create Iceberg partitions using the following 
Iceberg partition specific
 (supported only from Hive 4.0.0-alpha-1):
 
 ```sql
-CREATE TABLE x (i int, ts timestamp) PARTITIONED BY SPEC (month(ts), bucket(2, 
i)) STORED AS ICEBERG;
+CREATE TABLE x (i int, ts timestamp) PARTITIONED BY SPEC (month(ts), bucket(2, 
i)) STORED BY ICEBERG;
 DESCRIBE x;
 ```
 The result is:

Reply via email to