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:
parent
c7727800d1
commit
1bf2c3421d
|
@ -17,7 +17,7 @@ You can use the SHOW CONNECTIONS statement to find the conn_id.
|
||||||
## Terminate a Query
|
## Terminate a Query
|
||||||
|
|
||||||
```sql
|
```sql
|
||||||
KILL QUERY kill_id;
|
KILL QUERY 'kill_id';
|
||||||
```
|
```
|
||||||
|
|
||||||
You can use the SHOW QUERIES statement to find the kill_id.
|
You can use the SHOW QUERIES statement to find the kill_id.
|
||||||
|
|
|
@ -17,7 +17,7 @@ conn_id 可以通过 `SHOW CONNECTIONS` 获取。
|
||||||
## 终止查询
|
## 终止查询
|
||||||
|
|
||||||
```sql
|
```sql
|
||||||
KILL QUERY kill_id;
|
KILL QUERY 'kill_id';
|
||||||
```
|
```
|
||||||
|
|
||||||
kill_id 可以通过 `SHOW QUERIES` 获取。
|
kill_id 可以通过 `SHOW QUERIES` 获取。
|
||||||
|
|
Loading…
Reference in New Issue