MCPcopy
hub / github.com/cube2222/octosql / walkSubtree

Method walkSubtree

parser/sqlparser/ast.go:636–649  ·  view source on GitHub ↗
(visit Visit)

Source from the content-addressed store, hash-verified

634}
635
636func (node *Update) walkSubtree(visit Visit) error {
637 if node == nil {
638 return nil
639 }
640 return Walk(
641 visit,
642 node.Comments,
643 node.TableExprs,
644 node.Exprs,
645 node.Where,
646 node.OrderBy,
647 node.Limit,
648 )
649}
650
651// Delete represents a DELETE statement.
652// If you add fields here, consider adding them to calls to validateUnshardedRoute.

Callers

nothing calls this directly

Calls 1

WalkFunction · 0.85

Tested by

no test coverage detected