jnh5y commented on code in PR #26196:
URL: https://github.com/apache/flink/pull/26196#discussion_r1972412688
##########
docs/content/docs/dev/table/sourcesSinks.md:
##########
@@ -335,8 +335,8 @@ the `ParallelismProvider` interface.
<td>Enables to write partitioned data in a
<code>DynamicTableSink</code>.</td>
</tr>
<tr>
- <td>{{< gh_link
file="flink-table/flink-table-common/src/main/java/org/apache/flink/table/connector/source/abilities/SupportsBucketing.java"
name="SupportsBucketing" >}}</td>
- <td>Enables bucketing for a <code>DynamicTableSink</code>.</td>
+ <td>{{< gh_link
file="flink-table/flink-table-common/src/main/java/org/apache/flink/table/connector/sink/abilities/SupportsBucketing.java"
name="SupportsBucketing" >}}</td>
+ <td>Enables to write bucketed data into a
<code>DynamicTableSink</code>.</td>
Review Comment:
If you want to change this, instead of "Enables to write bucketed data
into", use "Enables writing bucketed data into"
##########
docs/content/docs/dev/table/sql/alter.md:
##########
@@ -410,13 +410,13 @@ ALTER TABLE MyTable ADD PARTITION (p1=1,p2='a') with
('k1'='v1') PARTITION (p1=1
ALTER TABLE MyTable ADD DISTRIBUTION BY HASH(uid) INTO 4 BUCKETS;
-- add new distribution on uid into 4 buckets
-CREATE TABLE MyTable ADD DISTRIBUTION BY (uid) INTO 4 BUCKETS;
+ALTER TABLE MyTable ADD DISTRIBUTION BY (uid) INTO 4 BUCKETS;
-- add new distribution on uid.
-CREATE TABLE MyTable ADD DISTRIBUTION BY (uid);
+ALTER TABLE MyTable ADD DISTRIBUTION BY (uid);
-- add new distribution into 4 buckets
-CREATE TABLE MyTable ADD DISTRIBUTION INTO 4 BUCKETS;
+ALTER TABLE MyTable ADD DISTRIBUTION INTO 4 BUCKETS;
Review Comment:
Thank you for fixing these!
--
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]