This is an automated email from the ASF dual-hosted git repository.
yunhong 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 7fd7b33cd [docs] Add alter table feature link in getting-started.md
(#2348)
7fd7b33cd is described below
commit 7fd7b33cd2c67358d1a8c2c13a93f88a12afb231
Author: yunhong <[email protected]>
AuthorDate: Mon Jan 12 15:42:56 2026 +0800
[docs] Add alter table feature link in getting-started.md (#2348)
---
website/docs/engine-flink/getting-started.md | 43 ++++++++++++++--------------
1 file changed, 22 insertions(+), 21 deletions(-)
diff --git a/website/docs/engine-flink/getting-started.md
b/website/docs/engine-flink/getting-started.md
index f2527774c..f25740602 100644
--- a/website/docs/engine-flink/getting-started.md
+++ b/website/docs/engine-flink/getting-started.md
@@ -20,27 +20,28 @@ Fluss supports Apache Flink's Table API and Flink's
DataStream API.
For Flink's Table API, Fluss supports the following features:
-| Feature Support | Flink | Notes
|
-|---------------------------------------------------|-------|----------------------------------------|
-| [SQL Create Catalog](ddl.md#create-catalog) | ✔️ |
|
-| [SQL Create Database](ddl.md#create-database) | ✔️ |
|
-| [SQL Drop Database](ddl.md#drop-database) | ✔️ |
|
-| [SQL Create Table](ddl.md#create-table) | ✔️ |
|
-| [SQL Create Table Like](ddl.md#create-table-like) | ✔️ |
|
-| [SQL Drop Table](ddl.md#drop-table) | ✔️ |
|
-| [SQL Create Materialized Table](ddl.md#materialized-table) | ✔️ |
Continuous refresh mode only |
-| [SQL Alter Materialized Table](ddl.md#alter-materialized-table) | ✔️ |
Suspend/Resume support |
-| [SQL Drop Materialized Table](ddl.md#drop-materialized-table) | ✔️ |
|
-| [SQL Show Partitions](ddl.md#show-partitions) | ✔️ |
|
-| [SQL Add Partition](ddl.md#add-partition) | ✔️ |
|
-| [SQL Drop Partition](ddl.md#drop-partition) | ✔️ |
|
-| [Procedures](ddl.md#procedures) | ✔️ | ACL management
and cluster configuration |
-| [SQL Select](reads.md) | ✔️ | Support both
streaming and batch mode. |
-| [SQL Limit](reads.md#limit-read) | ✔️ | Only for Log
Table |
-| [SQL Insert Into](writes.md) | ✔️ | Support both
streaming and batch mode. |
-| [SQL Delete From](writes.md#delete-from) | ✔️ | Only in batch
mode. |
-| [SQL Update](writes.md#update) | ✔️ | Only in batch
mode. |
-| [SQL Lookup Join](lookups.md) | ✔️ |
|
+| Feature Support | Flink |
Notes |
+|-----------------------------------------------------------------|-------|------------------------------------------|
+| [SQL Create Catalog](ddl.md#create-catalog) | ✔️ |
|
+| [SQL Create Database](ddl.md#create-database) | ✔️ |
|
+| [SQL Drop Database](ddl.md#drop-database) | ✔️ |
|
+| [SQL Create Table](ddl.md#create-table) | ✔️ |
|
+| [SQL Create Table Like](ddl.md#create-table-like) | ✔️ |
|
+| [SQL Drop Table](ddl.md#drop-table) | ✔️ |
|
+| [SQL Alter Table](ddl.md#alter-table) | ✔️ |
SET/RESET properties |
+| [SQL Create Materialized Table](ddl.md#materialized-table) | ✔️ |
Continuous refresh mode only |
+| [SQL Alter Materialized Table](ddl.md#alter-materialized-table) | ✔️ |
Suspend/Resume support |
+| [SQL Drop Materialized Table](ddl.md#drop-materialized-table) | ✔️ |
|
+| [SQL Show Partitions](ddl.md#show-partitions) | ✔️ |
|
+| [SQL Add Partition](ddl.md#add-partition) | ✔️ |
|
+| [SQL Drop Partition](ddl.md#drop-partition) | ✔️ |
|
+| [Procedures](ddl.md#procedures) | ✔️ |
ACL management and cluster configuration |
+| [SQL Select](reads.md) | ✔️ |
Support both streaming and batch mode. |
+| [SQL Limit](reads.md#limit-read) | ✔️ |
Only for Log Table |
+| [SQL Insert Into](writes.md) | ✔️ |
Support both streaming and batch mode. |
+| [SQL Delete From](writes.md#delete-from) | ✔️ |
Only in batch mode. |
+| [SQL Update](writes.md#update) | ✔️ |
Only in batch mode. |
+| [SQL Lookup Join](lookups.md) | ✔️ |
|
For Flink's DataStream API, you can see [DataStream
API](docs/engine-flink/datastream.mdx) for more details.