(traceID []byte, startTime uint64, endTime uint64)
| 38 | } |
| 39 | |
| 40 | func MakeSpanWithTimeWindow(traceID []byte, startTime uint64, endTime uint64) *v1_trace.Span { |
| 41 | return makeSpanWithAttributeCount(traceID, rand.Int()%10+1, startTime, endTime) // nolint:gosec // G404: Use of weak random number generator |
| 42 | } |
| 43 | |
| 44 | // DedicatedBlobTestSize is the length of blob payloads for dedicated columns (see DedicatedBlobTestString). |
| 45 | const DedicatedBlobTestSize = 1000 |
no test coverage detected