Skip to content

Commit 3d95c40

Browse files
authored
[docs] Fix the output result of the default merge engine example (#1551)
1 parent 7937996 commit 3d95c40

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

website/docs/table-design/data-distribution/partitioning.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ CREATE TABLE site_access(
5151
'table.auto-partition.time-zone' = 'Asia/Shanghai'
5252
);
5353
```
54-
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.
54+
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.
5555

5656

5757
### Table Options

website/docs/table-design/table-types/pk-table/merge-engines/default.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,4 +77,6 @@ SELECT * FROM T;
7777
+----+-----+----+
7878
| 1 | 1.0 | t2 |
7979
+----+-----+----+
80+
| 3 | 3.0 | t3 |
81+
+----+-----+----+
8082
```

0 commit comments

Comments
 (0)