diff --git a/docs/content/engines/starrocks.md b/docs/content/engines/starrocks.md index 1ab821a9a1033..80236a49a929d 100644 --- a/docs/content/engines/starrocks.md +++ b/docs/content/engines/starrocks.md @@ -70,11 +70,11 @@ For another example, you can query partition files of the table using the follow ```sql SELECT * FROM paimon_catalog.test_db.partition_tbl$partitions; /* -+-----------+--------------+--------------------+------------+----------------------------+ -| partition | record_count | file_size_in_bytes | file_count | last_update_time | -+-----------+--------------+--------------------+------------+----------------------------+ -| [1] | 1 | 645 | 1 | 2024-01-01 00:00:00.000000 | -+-----------+--------------+--------------------+------------+----------------------------+ ++---------------+----------------+--------------------+--------------------+------------------------+-------------------------+ +| partition | record_count | file_size_in_bytes | file_count | level0FileCoun | last_update_time | ++---------------+----------------+--------------------+--------------------+------------------------+-------------------------+ +| [1] | 1 | 645 | 1 | 1 | 2024-06-24 10:25:57.400 | ++---------------+----------------+--------------------+--------------------+------------------------+-------------------------+ */ ``` diff --git a/docs/content/maintenance/system-tables.md b/docs/content/maintenance/system-tables.md index cc542697a8761..614a4095e3344 100644 --- a/docs/content/maintenance/system-tables.md +++ b/docs/content/maintenance/system-tables.md @@ -301,11 +301,11 @@ You can query the partition files of the table. SELECT * FROM my_table$partitions; /* -+---------------+----------------+--------------------+--------------------+------------------------+ -| partition | record_count | file_size_in_bytes| file_count| last_update_time| -+---------------+----------------+--------------------+--------------------+------------------------+ -| [1] | 1 | 645 | 1 | 2024-06-24 10:25:57.400| -+---------------+----------------+--------------------+--------------------+------------------------+ ++---------------+----------------+--------------------+--------------------+------------------------+-------------------------+ +| partition | record_count | file_size_in_bytes | file_count | level0FileCoun | last_update_time | ++---------------+----------------+--------------------+--------------------+------------------------+-------------------------+ +| [1] | 1 | 645 | 1 | 1 | 2024-06-24 10:25:57.400 | ++---------------+----------------+--------------------+--------------------+------------------------+-------------------------+ */ ```