(t *testing.T)
| 138 | } |
| 139 | |
| 140 | func TestColumnIteratorSeek(t *testing.T) { |
| 141 | for _, tc := range iterTestCases { |
| 142 | t.Run(tc.name, func(t *testing.T) { |
| 143 | testColumnIteratorSeek(t, tc.makeIter) |
| 144 | }) |
| 145 | } |
| 146 | } |
| 147 | |
| 148 | func testColumnIteratorSeek(t *testing.T, makeIter makeTestIterFn) { |
| 149 | count := 10_000 |
nothing calls this directly
no test coverage detected