docs: kill query command need quote around id (#22588)

* docs: add current_user() in function

* docs: kill query command need quote around id
This commit is contained in:
Shuduo Sang 2023-08-27 00:05:44 +08:00 committed by GitHub
parent c7727800d1
commit 1bf2c3421d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -17,7 +17,7 @@ You can use the SHOW CONNECTIONS statement to find the conn_id.
## Terminate a Query
```sql
KILL QUERY kill_id;
KILL QUERY 'kill_id';
```
You can use the SHOW QUERIES statement to find the kill_id.

View File

@ -17,7 +17,7 @@ conn_id 可以通过 `SHOW CONNECTIONS` 获取。
## 终止查询
```sql
KILL QUERY kill_id;
KILL QUERY 'kill_id';
```
kill_id 可以通过 `SHOW QUERIES` 获取。