MCPcopy
hub / github.com/grafana/tempo / validate

Method validate

pkg/traceql/ast_validate.go:76–84  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

74}
75
76func (o SelectOperation) validate() error {
77 for _, e := range o.attrs {
78 if err := e.validate(); err != nil {
79 return err
80 }
81 }
82
83 return nil
84}
85
86func (o ScalarOperation) validate() error {
87 if err := o.LHS.validate(); err != nil {

Callers

nothing calls this directly

Calls 1

validateMethod · 0.65

Tested by

no test coverage detected