Skip to content

Commit

Permalink
docs: update admin function doc (#1166)
Browse files Browse the repository at this point in the history
  • Loading branch information
WenyXu committed Sep 3, 2024
1 parent 73bbb38 commit f4611cc
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions docs/reference/sql/functions/overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -260,8 +260,8 @@ GreptimeDB provides some administration functions to manage the database and dat
For example:
```sql
-- Flush the table test --
select flush_table("test");
admin flush_table("test");

-- Schedule a compaction for table test --
select compact_table("test");
admin compact_table("test");
```
Original file line number Diff line number Diff line change
Expand Up @@ -253,8 +253,8 @@ GreptimeDB 提供一些管理数据库和数据的函数:
例如:
```sql
-- 刷新表 test --
select flush_table("test");
admin flush_table("test");

-- 为表 test 安排压缩任务 --
select compact_table("test".md);
admin compact_table("test".md);
```
Original file line number Diff line number Diff line change
Expand Up @@ -253,8 +253,8 @@ GreptimeDB 提供一些管理数据库和数据的函数:
例如:
```sql
-- 刷新表 test --
select flush_table("test");
admin flush_table("test");

-- 为表 test 安排压缩任务 --
select compact_table("test".md);
admin compact_table("test".md);
```
Original file line number Diff line number Diff line change
Expand Up @@ -260,8 +260,8 @@ GreptimeDB provides some administration functions to manage the database and dat
For example:
```sql
-- Flush the table test --
select flush_table("test");
admin flush_table("test");

-- Schedule a compaction for table test --
select compact_table("test");
admin compact_table("test");
```

0 comments on commit f4611cc

Please sign in to comment.