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

Method walkSubtree

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

Source from the content-addressed store, hash-verified

360}
361
362func (node *Select) walkSubtree(visit Visit) error {
363 if node == nil {
364 return nil
365 }
366 return Walk(
367 visit,
368 node.Comments,
369 node.SelectExprs,
370 node.From,
371 node.Where,
372 node.GroupBy,
373 node.Having,
374 node.OrderBy,
375 node.Limit,
376 )
377}
378
379// AddWhere adds the boolean expression to the
380// WHERE clause as an AND condition. If the expression

Callers

nothing calls this directly

Calls 1

WalkFunction · 0.85

Tested by

no test coverage detected