(ss *traceql.Spanset)
| 752 | } |
| 753 | |
| 754 | func putSpansetAndSpans(ss *traceql.Spanset) { |
| 755 | if ss != nil { |
| 756 | for _, s := range ss.Spans { |
| 757 | if span, ok := s.(*span); ok { |
| 758 | putSpan(span) |
| 759 | } |
| 760 | } |
| 761 | putSpanset(ss) |
| 762 | } |
| 763 | } |
| 764 | |
| 765 | // Helper function to create an iterator, that abstracts away |
| 766 | // context like file and rowgroups. |
nothing calls this directly
no test coverage detected