This is an automated email from the ASF dual-hosted git repository.
danny0405 pushed a commit to branch asf-site
in repository https://gitbox.apache.org/repos/asf/hudi.git
The following commit(s) were added to refs/heads/asf-site by this push:
new 29bd207cd39 [HUDI-6671][DOC] Add partition sql command (#9556)
29bd207cd39 is described below
commit 29bd207cd39eb76fe9851b7b984aa96da9c36fd7
Author: Wechar Yu <[email protected]>
AuthorDate: Tue Aug 29 09:46:34 2023 +0800
[HUDI-6671][DOC] Add partition sql command (#9556)
---
website/docs/quick-start-guide.md | 3 +++
1 file changed, 3 insertions(+)
diff --git a/website/docs/quick-start-guide.md
b/website/docs/quick-start-guide.md
index c1dde3cb9a7..17564d2508e 100644
--- a/website/docs/quick-start-guide.md
+++ b/website/docs/quick-start-guide.md
@@ -1665,6 +1665,9 @@ alter table hudi_cow_nonpcf_tbl2 set tblproperties
(hoodie.keep.max.commits = '1
**Syntax**
```sql
+-- Add Partition
+ALTER TABLE tableIdentifier ADD PARTITION ( partition_col_name =
partition_col_val [ , ... ] )
+
-- Drop Partition
ALTER TABLE tableIdentifier DROP PARTITION ( partition_col_name =
partition_col_val [ , ... ] )