This is an automated email from the ASF dual-hosted git repository.
jark 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 3d95c4093 [docs] Fix the output result of the default merge engine
example (#1551)
3d95c4093 is described below
commit 3d95c4093a3d5693b8b2e485436d312092e88ab3
Author: Rafael Sousa <[email protected]>
AuthorDate: Tue Aug 26 23:38:54 2025 -0300
[docs] Fix the output result of the default merge engine example (#1551)
---
website/docs/table-design/data-distribution/partitioning.md | 2 +-
website/docs/table-design/table-types/pk-table/merge-engines/default.md | 2 ++
2 files changed, 3 insertions(+), 1 deletion(-)
diff --git a/website/docs/table-design/data-distribution/partitioning.md
b/website/docs/table-design/data-distribution/partitioning.md
index ed886bd46..397b2092c 100644
--- a/website/docs/table-design/data-distribution/partitioning.md
+++ b/website/docs/table-design/data-distribution/partitioning.md
@@ -51,7 +51,7 @@ CREATE TABLE site_access(
'table.auto-partition.time-zone' = 'Asia/Shanghai'
);
```
-In this case, when automatic partitioning occurs (Fluss will periodically
operate on all tables in the background), four partitions are pre-created with
a partition granularity of YEAR, retaining two historical partitions. The time
zone is set to Asia/Shanghai.
+In this case, when automatic partitioning occurs (Fluss will periodically
operate on all tables in the background), five partitions are pre-created with
a partition granularity of YEAR, retaining two historical partitions. The time
zone is set to Asia/Shanghai.
### Table Options
diff --git
a/website/docs/table-design/table-types/pk-table/merge-engines/default.md
b/website/docs/table-design/table-types/pk-table/merge-engines/default.md
index e8b992d2a..189582f9c 100644
--- a/website/docs/table-design/table-types/pk-table/merge-engines/default.md
+++ b/website/docs/table-design/table-types/pk-table/merge-engines/default.md
@@ -77,4 +77,6 @@ SELECT * FROM T;
+----+-----+----+
| 1 | 1.0 | t2 |
+----+-----+----+
+| 3 | 3.0 | t3 |
++----+-----+----+
```
\ No newline at end of file