This is an automated email from the ASF dual-hosted git repository.
lzljs3620320 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-paimon.git
The following commit(s) were added to refs/heads/master by this push:
new 9c3f53aeb [doc] Document manifests system table
9c3f53aeb is described below
commit 9c3f53aeb9c841f0d93c40630e61fa611692d6a7
Author: JingsongLi <[email protected]>
AuthorDate: Tue Jul 4 10:34:13 2023 +0800
[doc] Document manifests system table
---
docs/content/how-to/system-tables.md | 16 ++++++++++++++++
1 file changed, 16 insertions(+)
diff --git a/docs/content/how-to/system-tables.md
b/docs/content/how-to/system-tables.md
index 51d6a2deb..88c3db3b1 100644
--- a/docs/content/how-to/system-tables.md
+++ b/docs/content/how-to/system-tables.md
@@ -194,3 +194,19 @@ SELECT * FROM MyTable$consumers;
2 rows in set
*/
```
+
+## Manifests Table
+
+You can query all manifest files contained in the latest snapshot of the
current table.
+
+```sql
+SELECT * FROM MyTable$manifests;
+
+/*
++--------------------------------+-------------+------------------+-------------------+---------------+
+| file_name | file_size | num_added_files |
num_deleted_files | schema_id |
++--------------------------------+-------------+------------------+-------------------+---------------+
+| manifest-f4dcab43-ef6b-4713... | 1648 | 1 |
0 | 0 |
++--------------------------------+-------------+------------------+-------------------+---------------+
+*/
+```