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

Method walkSubtree

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

Source from the content-addressed store, hash-verified

589}
590
591func (node *Insert) walkSubtree(visit Visit) error {
592 if node == nil {
593 return nil
594 }
595 return Walk(
596 visit,
597 node.Comments,
598 node.Table,
599 node.Columns,
600 node.Rows,
601 node.OnDup,
602 )
603}
604
605// InsertRows represents the rows for an INSERT statement.
606type InsertRows interface {

Callers

nothing calls this directly

Calls 1

WalkFunction · 0.85

Tested by

no test coverage detected