(t *testing.T)
| 563 | } |
| 564 | |
| 565 | func TestCompactionHonorsBlockStartEndTimes(t *testing.T) { |
| 566 | for _, enc := range encoding.AllEncodingsForWrites() { |
| 567 | t.Run(enc.Version(), func(t *testing.T) { |
| 568 | t.Parallel() |
| 569 | testCompactionHonorsBlockStartEndTimes(t, enc.Version()) |
| 570 | }) |
| 571 | } |
| 572 | } |
| 573 | |
| 574 | func testCompactionHonorsBlockStartEndTimes(t *testing.T, targetBlockVersion string) { |
| 575 | tempDir := t.TempDir() |
nothing calls this directly
no test coverage detected