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/paimon.git


The following commit(s) were added to refs/heads/master by this push:
     new 78cfc72492 [doc] Add sys prefix to procedure (#4981)
78cfc72492 is described below

commit 78cfc72492afab9cff4e192c9ef1ef2e7bcdeb10
Author: Zouxxyy <[email protected]>
AuthorDate: Wed Jan 22 16:47:10 2025 +0800

    [doc] Add sys prefix to procedure (#4981)
---
 docs/content/flink/procedures.md             | 10 +++++-----
 docs/content/maintenance/manage-snapshots.md |  2 +-
 2 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/docs/content/flink/procedures.md b/docs/content/flink/procedures.md
index 4d1ad27fbd..a58d4713b7 100644
--- a/docs/content/flink/procedures.md
+++ b/docs/content/flink/procedures.md
@@ -337,11 +337,11 @@ All available procedures are listed below.
             <li>parallelism: The maximum number of concurrent deleting files. 
By default is the number of processors available to the Java virtual 
machine.</li>
             <li>mode: The mode of remove orphan clean procedure (local or 
distributed) . By default is distributed.</li>
       </td>
-      <td>CALL remove_orphan_files(`table` => 'default.T', older_than => 
'2023-10-31 12:00:00')<br/><br/>
-          CALL remove_orphan_files(`table` => 'default.*', older_than => 
'2023-10-31 12:00:00')<br/><br/>
-          CALL remove_orphan_files(`table` => 'default.T', older_than => 
'2023-10-31 12:00:00', dry_run => true)<br/><br/>
-          CALL remove_orphan_files(`table` => 'default.T', older_than => 
'2023-10-31 12:00:00', dry_run => false, parallelism => '5')<br/><br/>
-          CALL remove_orphan_files(`table` => 'default.T', older_than => 
'2023-10-31 12:00:00', dry_run => false, parallelism => '5', mode => 'local')
+      <td>CALL sys.remove_orphan_files(`table` => 'default.T', older_than => 
'2023-10-31 12:00:00')<br/><br/>
+          CALL sys.remove_orphan_files(`table` => 'default.*', older_than => 
'2023-10-31 12:00:00')<br/><br/>
+          CALL sys.remove_orphan_files(`table` => 'default.T', older_than => 
'2023-10-31 12:00:00', dry_run => true)<br/><br/>
+          CALL sys.remove_orphan_files(`table` => 'default.T', older_than => 
'2023-10-31 12:00:00', dry_run => false, parallelism => '5')<br/><br/>
+          CALL sys.remove_orphan_files(`table` => 'default.T', older_than => 
'2023-10-31 12:00:00', dry_run => false, parallelism => '5', mode => 'local')
       </td>
    </tr>
    <tr>
diff --git a/docs/content/maintenance/manage-snapshots.md 
b/docs/content/maintenance/manage-snapshots.md
index 721d5d0baf..dc3d32602a 100644
--- a/docs/content/maintenance/manage-snapshots.md
+++ b/docs/content/maintenance/manage-snapshots.md
@@ -291,7 +291,7 @@ public class RollbackTo {
 Run the following sql:
 
 ```sql
-CALL rollback(table => 'test.T', version => '2');
+CALL sys.rollback(table => 'database_name.table_name', snapshot => 
snasphot_id);
 ```
 
 {{< /tab >}}

Reply via email to