Skip to content

Commit

Permalink
admin show ddl: Fix EBNF (#18153)
Browse files Browse the repository at this point in the history
  • Loading branch information
dveeden authored Jul 16, 2024
1 parent cd72593 commit ec266be
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sql-statements/sql-statement-admin-show-ddl.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ AdminShowDDLStmt ::=
'JOBS' Int64Num? WhereClauseOptional
| 'JOB' 'QUERIES' NumList
| 'JOB' 'QUERIES' 'LIMIT' m ( ('OFFSET' | ',') n )?
)
)?
NumList ::=
Int64Num ( ',' Int64Num )*
Expand All @@ -36,7 +36,7 @@ To view the status of the currently running DDL jobs, use `ADMIN SHOW DDL`. The
- `OWNER_ADDRESS`: the IP address of the DDL owner.
- `RUNNING_JOBS`: details about the running DDL job.
- `SELF_ID`: the UUID of the TiDB node to which you are currently connected. If `SELF_ID` is the same as the `OWNER_ID`, it means that you are connected to the DDL owner.
- `QUERY`: the statement of the query.
- `QUERY`: the statements of the queries.

```sql
ADMIN SHOW DDL\G;
Expand Down

0 comments on commit ec266be

Please sign in to comment.