Skip to content

Commit

Permalink
[doc] fix flink procedure document sql syntax error. (#4504)
Browse files Browse the repository at this point in the history
  • Loading branch information
zhuangchong authored Nov 12, 2024
1 parent 4d32ed8 commit c3a8319
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/content/flink/procedures.md
Original file line number Diff line number Diff line change
Expand Up @@ -409,7 +409,7 @@ All available procedures are listed below.
<td>expire_snapshots</td>
<td>
-- Use named argument<br/>
CALL [catalog.]sys.reset_consumer(<br/>
CALL [catalog.]sys.expire_snapshots(<br/>
`table` => 'identifier', <br/>
retain_max => 'retain_max', <br/>
retain_min => 'retain_min', <br/>
Expand Down
4 changes: 2 additions & 2 deletions docs/content/maintenance/manage-snapshots.md
Original file line number Diff line number Diff line change
Expand Up @@ -308,9 +308,9 @@ submit a `remove_orphan_files` job to clean them:
{{< tab "Spark SQL/Flink SQL" >}}
```sql
CALL sys.remove_orphan_files(`table` => "my_db.my_table", [older_than => "2023-10-31 12:00:00"])
CALL sys.remove_orphan_files(`table` => 'my_db.my_table', [older_than => '2023-10-31 12:00:00'])

CALL sys.remove_orphan_files(`table` => "my_db.*", [older_than => "2023-10-31 12:00:00"])
CALL sys.remove_orphan_files(`table` => 'my_db.*', [older_than => '2023-10-31 12:00:00'])
```
{{< /tab >}}
Expand Down

0 comments on commit c3a8319

Please sign in to comment.