snuyanzin commented on code in PR #28163:
URL: https://github.com/apache/flink/pull/28163#discussion_r3252833655


##########
docs/content/docs/sql/materialized-table/statements.md:
##########
@@ -548,6 +549,27 @@ ALTER MATERIALIZED TABLE my_materialized_table RESUME;
 ALTER MATERIALIZED TABLE my_materialized_table RESUME WITH 
('sink.parallelism'='10');
 ```
 
+## SET
+
+```
+ALTER MATERIALIZED TABLE [catalog_name.][db_name.]table_name SET (key1=val1, 
key2=val2, ...)
+```
+
+`SET` is used to add or overwrite table options of a materialized table. 
Existing options not listed in the statement are preserved.

Review Comment:
   what happen for the case of same keys?
   ```sql
   ALTER MATERIALIZED TABLE [catalog_name.][db_name.]table_name SET (key1=val1, 
key1=val2, ...)
   ```



-- 
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