MCPcopy
hub / github.com/sqldef/sqldef / Update

Struct Update

parser/node.go:412–420  ·  view source on GitHub ↗

Update represents an UPDATE statement. If you add fields here, consider adding them to calls to validateSubquerySamePlan.

Source from the content-addressed store, hash-verified

410// Update represents an UPDATE statement.
411// If you add fields here, consider adding them to calls to validateSubquerySamePlan.
412type 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.
423func (node *Update) Format(buf *nodeBuffer) {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected