JingsongLi commented on code in PR #487:
URL: https://github.com/apache/flink-table-store/pull/487#discussion_r1071965445


##########
docs/content/docs/how-to/writing-tables.md:
##########
@@ -157,29 +157,23 @@ INSERT OVERWRITE MyTable SELECT * FROM MyTable WHERE false
 
 {{< /tabs >}}
 
-## Purging a Partition
+## Purging Partitions
 
-Particularly, you can use `INSERT OVERWRITE` to purge data of a partition by 
inserting empty value to the partition:
+Currently, Table Store supports two ways to purge partitions.
 
-{{< tabs "purge-partition-syntax" >}}
+1. Like purging tables, you can use `INSERT OVERWRITE` to purge data of 
partitions by inserting empty value to them:
 
-{{< tab "Flink" >}}
-
-```sql
-INSERT OVERWRITE MyTable PARTITION (key1 = value1, key2 = value2, ...) SELECT 
selectSpec FROM MyTable WHERE false
-```
+2. Flink SQL currently does not support statements related to drop partitions, 
so we have to submit the drop-partition job through `flink run`.

Review Comment:
   `drop multiple partitions`?



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to