This is an automated email from the ASF dual-hosted git repository.
zouxxyy 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 7d4efd431 [doc] Fix call procedure miss sys namespace (#3282)
7d4efd431 is described below
commit 7d4efd431f01423d416cf0d34caf8e9805a84181
Author: EricZ <[email protected]>
AuthorDate: Sun Apr 28 22:17:15 2024 +0800
[doc] Fix call procedure miss sys namespace (#3282)
Co-authored-by: zengbao <[email protected]>
---
docs/content/maintenance/manage-tags.md | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/docs/content/maintenance/manage-tags.md
b/docs/content/maintenance/manage-tags.md
index 75a449665..0b820b624 100644
--- a/docs/content/maintenance/manage-tags.md
+++ b/docs/content/maintenance/manage-tags.md
@@ -137,17 +137,17 @@ public class CreateTag {
{{< tab "Spark" >}}
Run the following sql:
```sql
-CALL create_tag(table => 'test.t', tag => 'test_tag', snapshot => 2);
+CALL sys.create_tag(table => 'test.t', tag => 'test_tag', snapshot => 2);
```
To create a tag with retained 1 day, run the following sql:
```sql
-CALL create_tag(table => 'test.t', tag => 'test_tag', snapshot => 2,
time_retained => '1 d');
+CALL sys.create_tag(table => 'test.t', tag => 'test_tag', snapshot => 2,
time_retained => '1 d');
```
To create a tag based on the latest snapshot id, run the following sql:
```sql
-CALL create_tag(table => 'test.t', tag => 'test_tag');
+CALL sys.create_tag(table => 'test.t', tag => 'test_tag');
```
{{< /tab >}}
@@ -197,7 +197,7 @@ public class DeleteTag {
{{< tab "Spark" >}}
Run the following sql:
```sql
-CALL delete_tag(table => 'test.t', tag => 'test_tag');
+CALL sys.delete_tag(table => 'test.t', tag => 'test_tag');
```
{{< /tab >}}
@@ -258,7 +258,7 @@ public class RollbackTo {
Run the following sql:
```sql
-CALL rollback(table => 'test.t', version => '2');
+CALL sys.rollback(table => 'test.t', version => '2');
```
{{< /tab >}}