snuyanzin commented on code in PR #1870:
URL: https://github.com/apache/fluss/pull/1870#discussion_r2469842873


##########
website/docs/engine-flink/ddl.md:
##########
@@ -220,6 +220,28 @@ DROP TABLE my_table;
 
 This will entirely remove all the data of the table in the Fluss cluster.
 
+## Alter Table
+### SET
+The SET statement allows you to configure one or more [Storage 
Options](engine-flink/options.md#storage-options) for a specified table. If a 
particular storage-option is already configured, it will be overridden with the 
new value.
+
+**Limits**
+1. `bootstrap.servers`,`bucket.num` and `bucket.key` cannot be altered.
+2. All the table options except `table.datalake.enabled` can be modified.
+3. If lakehouse is already enabled for a table, options with lakehouse format 
prefixes (e.g., `paimon.*`) cannot be set again.
+```sql title="Flink SQL"
+ALTER TABLE my_table SET ('table.datalake.enabled' = 'paimon');
+```
+
+
+### RESET 
+Reset one or more [Storage Options](engine-flink/options.md#storage-options) 
to its default value.
+
+The following examples illustrate the usage of the RESET statements.
+```sql title="Flink SQL"
+ALTER TABLE my_table RESET ('table.datalake.enabled');
+```

Review Comment:
   ```suggestion
   The following example illustrates the usage of the RESET statements.
   ```sql title="Flink SQL"
   ALTER TABLE my_table RESET ('table.datalake.enabled');
   ```
   ```
   since so far there is only one example



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