This is an automated email from the ASF dual-hosted git repository.
xushiyan 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 59444eb463 [MINOR][DOCS] Document alter table unset tblproperties
comand (#5413)
59444eb463 is described below
commit 59444eb463776fabed2fe5d22e8472dbbf379b36
Author: kazdy <[email protected]>
AuthorDate: Tue May 24 00:39:53 2022 +0200
[MINOR][DOCS] Document alter table unset tblproperties comand (#5413)
---
website/versioned_docs/version-0.10.1/quick-start-guide.md | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/website/versioned_docs/version-0.10.1/quick-start-guide.md
b/website/versioned_docs/version-0.10.1/quick-start-guide.md
index 2d661943f7..258761a394 100644
--- a/website/versioned_docs/version-0.10.1/quick-start-guide.md
+++ b/website/versioned_docs/version-0.10.1/quick-start-guide.md
@@ -1058,6 +1058,7 @@ ALTER TABLE tableIdentifier CHANGE COLUMN colName colName
colType
-- Alter table properties
ALTER TABLE tableIdentifier SET TBLPROPERTIES (key = 'value')
+ALTER TABLE tableIdentifier UNSET TBLPROPERTIES [ IF EXISTS ] ( key1, key2,
... )
```
**Examples**
```sql
@@ -1072,6 +1073,9 @@ ALTER TABLE hudi_cow_nonpcf_tbl2 change column uuid uuid
bigint;
--set properties;
alter table hudi_cow_nonpcf_tbl2 set tblproperties (hoodie.keep.max.commits =
'10');
+
+--unset properties;
+alter table hudi_cow_nonpcf_tbl2 unset tblproperties (hoodie.keep.max.commits)
```
### Partition SQL Command
**Syntax**