DeleteCommand - Part of Command that represent deleting row from table Example: DELETE FROM tb1 WHERE two EQUAL 3;
| 355 | // Example: |
| 356 | // DELETE FROM tb1 WHERE two EQUAL 3; |
| 357 | type DeleteCommand struct { |
| 358 | Token token.Token |
| 359 | Name Identifier // name of the table |
| 360 | WhereCommand *WhereCommand // optional |
| 361 | } |
| 362 | |
| 363 | func (ls DeleteCommand) CommandNode() {} |
| 364 | func (ls DeleteCommand) TokenLiteral() string { return ls.Token.Literal } |
nothing calls this directly
no outgoing calls
no test coverage detected