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

Method Next

pkg/parquetquery/iters.go:574–583  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

572}
573
574func (c *SyncIterator) Next() (*IteratorResult, error) {
575 rn, v, err := c.next()
576 if err != nil {
577 return nil, err
578 }
579 if !rn.Valid() {
580 return nil, nil
581 }
582 return c.makeResult(rn, v), nil
583}
584
585// SeekTo moves this iterator to the next result that is greater than
586// or equal to the given row number (and based on the given definition level)

Callers 5

findTraceByIDFunction · 0.95
findTraceByIDFunction · 0.95
findTraceByIDFunction · 0.95
testPredicateFunction · 0.95

Calls 2

nextMethod · 0.95
ValidMethod · 0.80

Tested by 2

testPredicateFunction · 0.76