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

Method walkSubtree

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

Source from the content-addressed store, hash-verified

463}
464
465func (node *Union) walkSubtree(visit Visit) error {
466 if node == nil {
467 return nil
468 }
469 return Walk(
470 visit,
471 node.Left,
472 node.Right,
473 )
474}
475
476type With struct {
477 CommonTableExpressions CommonTableExpressions

Callers

nothing calls this directly

Calls 1

WalkFunction · 0.85

Tested by

no test coverage detected