(t *testing.T)
| 634 | } |
| 635 | |
| 636 | func TestCompactionDropsTraces(t *testing.T) { |
| 637 | for _, enc := range encoding.AllEncodingsForWrites() { |
| 638 | t.Run(enc.Version(), func(t *testing.T) { |
| 639 | t.Parallel() |
| 640 | testCompactionDropsTraces(t, enc.Version()) |
| 641 | }) |
| 642 | } |
| 643 | } |
| 644 | |
| 645 | func testCompactionDropsTraces(t *testing.T, targetBlockVersion string) { |
| 646 | tempDir := t.TempDir() |
nothing calls this directly
no test coverage detected