()
| 218 | } |
| 219 | |
| 220 | func (c *mostRecentCombiner) OldestTimestampNanos() uint64 { |
| 221 | if len(c.trsSorted) == 0 { |
| 222 | return 0 |
| 223 | } |
| 224 | |
| 225 | return c.trsSorted[len(c.trsSorted)-1].StartTimeUnixNano |
| 226 | } |
| 227 | |
| 228 | // combineSearchResults overlays the incoming search result with the existing result. This is required |
| 229 | // for the following reason: a trace may be present in multiple blocks, or in partial segments |
no outgoing calls