Update represents an UPDATE statement. If you add fields here, consider adding them to calls to validateSubquerySamePlan.
| 410 | // Update represents an UPDATE statement. |
| 411 | // If you add fields here, consider adding them to calls to validateSubquerySamePlan. |
| 412 | type Update struct { |
| 413 | Comments Comments |
| 414 | TableExprs TableExprs |
| 415 | Exprs UpdateExprs |
| 416 | From TableExprs |
| 417 | Where *Where |
| 418 | OrderBy OrderBy |
| 419 | Limit *Limit |
| 420 | } |
| 421 | |
| 422 | // Format formats the node. |
| 423 | func (node *Update) Format(buf *nodeBuffer) { |
nothing calls this directly
no outgoing calls
no test coverage detected