DeleteStatement represents a DELETE SQL statement
| 1536 | |
| 1537 | // DeleteStatement represents a DELETE SQL statement |
| 1538 | type DeleteStatement struct { |
| 1539 | With *WithClause |
| 1540 | TableName string |
| 1541 | Alias string |
| 1542 | Using []TableReference |
| 1543 | Where Expression |
| 1544 | Returning []Expression |
| 1545 | Pos models.Location // Source position of the DELETE keyword (1-based line and column) |
| 1546 | } |
| 1547 | |
| 1548 | func (d *DeleteStatement) statementNode() {} |
| 1549 | func (d DeleteStatement) TokenLiteral() string { return "DELETE" } |
nothing calls this directly
no outgoing calls
no test coverage detected