Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: update admin function doc #1166

Merged
merged 3 commits into from
Sep 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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");
```
Loading