This is an automated email from the ASF dual-hosted git repository.
yuxia pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/fluss.git
The following commit(s) were added to refs/heads/main by this push:
new 4dba604e7 [doc] fix typo of 'table.datalake.enabled' in options.md
(#2366)
4dba604e7 is described below
commit 4dba604e7ca66ef880df51369d6674904d12a730
Author: zhaomin1423 <[email protected]>
AuthorDate: Wed Jan 14 09:36:04 2026 +0800
[doc] fix typo of 'table.datalake.enabled' in options.md (#2366)
---
website/docs/engine-flink/options.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/website/docs/engine-flink/options.md
b/website/docs/engine-flink/options.md
index ad389b1f5..fb456b45e 100644
--- a/website/docs/engine-flink/options.md
+++ b/website/docs/engine-flink/options.md
@@ -54,7 +54,7 @@ INSERT INTO pk_table2 /*+
OPTIONS('sink.ignore-delete'='true') */ select * from
Using `ALTER TABLE ... SET` statement to modify the table options. For
example, to enable lakehouse storage for an existing table, you can run the
following SQL command:
```sql
-ALTER TABLE log_table SET ('table.datalake.enable' = 'true');
+ALTER TABLE log_table SET ('table.datalake.enabled' = 'true');
```
See more details about [ALTER TABLE ...
SET](engine-flink/ddl.md#set-properties) and [ALTER TABLE ...
RESET](engine-flink/ddl.md#reset-properties) documentation.