Skip to content

Commit

Permalink
test mermaid
Browse files Browse the repository at this point in the history
  • Loading branch information
goodroot committed Jul 19, 2024
1 parent 288a8b1 commit 2d59caa
Showing 1 changed file with 25 additions and 1 deletion.
26 changes: 25 additions & 1 deletion reference/sql/acl/alter-user.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,31 @@ Enterprise.

## Syntax

![Flow chart showing the syntax of the ALTER USER keyword](/img/docs/diagrams/alterUser.svg)
```mermaid
graph LR
A[ALTER USER]
A --> B[userName]
B --> C[ENABLE]
B --> D[DISABLE]
B --> E[WITH]
E --> F[NO PASSWORD]
E --> G[PASSWORD]
G --> Q[password]
B --> H[CREATE TOKEN TYPE]
H --> I[JWK]
H --> J[REST WITH TTL]
J --> K[timeUnit]
K --> L[REFRESH]
B --> M[DROP TOKEN TYPE]
M --> N[JWK]
M --> O[REST]
O --> P[token]
classDef operand fill:#fff,stroke:#333,stroke-width:2px;
class A,C,D,E,F,G,H,I,J,K,L,M,N,O,P,Q sqlSyntax;
class B,Q,K,P operand;
```

## Description

Expand Down

0 comments on commit 2d59caa

Please sign in to comment.