Skip to content

Commit f0f8d08

Browse files
committed
modified based on cr
1 parent 42e7d2d commit f0f8d08

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

website/docs/engine-flink/ddl.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ This will entirely remove all the data of the table in the Fluss cluster.
225225
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.
226226

227227
**Limits**
228-
1. `bootstrap.servers`,`bucket.num` and `bucket.key` cannot be altered.
228+
1. `bootstrap.servers`, `bucket.num` and `bucket.key` cannot be altered.
229229
2. All the table options except `table.datalake.enabled` can be modified.
230230
3. If lakehouse is already enabled for a table, options with lakehouse format prefixes (e.g., `paimon.*`) cannot be set again.
231231
```sql title="Flink SQL"
@@ -236,7 +236,7 @@ ALTER TABLE my_table SET ('table.datalake.enabled' = 'paimon');
236236
### RESET
237237
Reset one or more [Storage Options](engine-flink/options.md#storage-options) to its default value.
238238

239-
The following examples illustrate the usage of the RESET statements.
239+
The following example illustrates the usage of the RESET statements.
240240
```sql title="Flink SQL"
241241
ALTER TABLE my_table RESET ('table.datalake.enabled');
242242
```

website/docs/engine-flink/options.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ ALTER TABLE log_table SET ('table.log.ttl' = '7d');
8686
| table.delete.behavior | Enum | ALLOW | Controls the behavior of delete operations on primary key tables. Three modes are supported: `ALLOW` (default) - allows normal delete operations; `IGNORE` - silently ignores delete requests without errors; `DISABLE` - rejects delete requests and throws explicit errors. This configuration provides system-level guarantees for some downstream pipelines (e.g., Flink Delta Join) that must not receive any delete events in the changelog of the table. For tables with `first_row` or `versioned` merge engines, this option is automatically set to `IGNORE` and cannot be overridden. Only applicable to primary key tables. |
8787

8888
Storage Options can be altered by [Alter Table](engine-flink/ddl.md#alter-table). The limitations are as follows:
89-
1. `bootstrap.servers`,`bucket.num` and `bucket.key` cannot be altered.
89+
1. `bootstrap.servers`, `bucket.num` and `bucket.key` cannot be altered.
9090
2. All the table options except `table.datalake.enabled` can be modified.
9191
3. If lakehouse is already enabled for a table, options with lakehouse format prefixes (e.g., `paimon.*`) cannot be set again.
9292

website/docs/maintenance/operations/alter-config.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,6 @@ Currently, only `datalake.format` and option with prefix `datalake.${datalake.fo
3737
## Alter Table Configuration
3838

3939
Storage Options can be altered by [Alter Table](engine-flink/ddl.md#alter-table). The limitations are as follows:
40-
1. `bootstrap.servers`,`bucket.num` and `bucket.key` cannot be altered.
40+
1. `bootstrap.servers`, `bucket.num` and `bucket.key` cannot be altered.
4141
2. All the table options except `table.datalake.enabled` can be modified.
4242
3. If lakehouse is already enabled for a table, options with lakehouse format prefixes (e.g., `paimon.*`) cannot be set again.

0 commit comments

Comments
 (0)