Skip to content

Commit

Permalink
Synchronise the syntax tree with drop stats (#11287)
Browse files Browse the repository at this point in the history
  • Loading branch information
YangKeao authored Jan 16, 2023
1 parent 69c4bb6 commit 8a6032b
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion sql-statements/sql-statement-drop-stats.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,10 @@ The `DROP STATS` statement is used to delete the statistics of the selected tabl

```ebnf+diagram
DropStatsStmt ::=
'DROP' 'STATS' TableName
'DROP' 'STATS' TableNameList
TableNameList ::=
TableName ( ',' TableName )*
TableName ::=
Identifier ('.' Identifier)?
Expand Down

0 comments on commit 8a6032b

Please sign in to comment.