Skip to content

Commit

Permalink
[core] Introduce level0FileCount for partitions table
Browse files Browse the repository at this point in the history
  • Loading branch information
chenzhuoyu committed Aug 27, 2024
1 parent eb253ec commit fce0a92
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
10 changes: 5 additions & 5 deletions docs/content/engines/starrocks.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 |
+---------------+----------------+--------------------+--------------------+------------------------+-------------------------+
*/
```

Expand Down
10 changes: 5 additions & 5 deletions docs/content/maintenance/system-tables.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 |
+---------------+----------------+--------------------+--------------------+------------------------+-------------------------+
*/
```

Expand Down

0 comments on commit fce0a92

Please sign in to comment.