Skip to content

Commit 7c0781b

Browse files
authored
[docs] Fix the output result of the default merge engine example (#1553)
1 parent f77ee9e commit 7c0781b

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
@@ -67,7 +67,7 @@ CREATE TABLE site_access(
6767
'table.auto-partition.time-zone' = 'Asia/Shanghai'
6868
);
6969
```
70-
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.
70+
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.
7171

7272

7373
### 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
@@ -93,4 +93,6 @@ SELECT * FROM T;
9393
+----+-----+----+
9494
| 1 | 1.0 | t2 |
9595
+----+-----+----+
96+
| 3 | 3.0 | t3 |
97+
+----+-----+----+
9698
```

0 commit comments

Comments
 (0)