(b *testing.B, encoding string, flushCount int, runner func([][]byte, []*tempopb.Trace, common.WALBlock))
| 501 | } |
| 502 | |
| 503 | func runWALBenchmark(b *testing.B, encoding string, flushCount int, runner func([][]byte, []*tempopb.Trace, common.WALBlock)) { |
| 504 | runWALBenchmarkWithAppendMode(b, encoding, flushCount, false, runner) |
| 505 | } |
| 506 | |
| 507 | func runWALBenchmarkWithAppendMode(b *testing.B, encoding string, flushCount int, appendTrace bool, runner func([][]byte, []*tempopb.Trace, common.WALBlock)) { |
| 508 | wal, err := New(&Config{ |
no test coverage detected