Delete represents a DELETE statement. If you add fields here, consider adding them to calls to validateSubquerySamePlan.
| 431 | // Delete represents a DELETE statement. |
| 432 | // If you add fields here, consider adding them to calls to validateSubquerySamePlan. |
| 433 | type Delete struct { |
| 434 | Comments Comments |
| 435 | Targets TableNames |
| 436 | TableExprs TableExprs |
| 437 | Partitions Partitions |
| 438 | Where *Where |
| 439 | OrderBy OrderBy |
| 440 | Limit *Limit |
| 441 | } |
| 442 | |
| 443 | // Format formats the node. |
| 444 | func (node *Delete) Format(buf *nodeBuffer) { |
nothing calls this directly
no outgoing calls
no test coverage detected