DropCommand - Part of Command that represent dropping table Example: DROP TABLE table;
| 368 | // Example: |
| 369 | // DROP TABLE table; |
| 370 | type DropCommand struct { |
| 371 | Token token.Token |
| 372 | Name Identifier // name of the table |
| 373 | } |
| 374 | |
| 375 | func (ls DropCommand) CommandNode() {} |
| 376 | func (ls DropCommand) TokenLiteral() string { return ls.Token.Literal } |
nothing calls this directly
no outgoing calls
no test coverage detected