| 281 | } |
| 282 | |
| 283 | type testLTXFileOpener struct { |
| 284 | OpenLTXFileFunc func(ctx context.Context, level int, minTXID, maxTXID ltx.TXID, offset, size int64) (io.ReadCloser, error) |
| 285 | } |
| 286 | |
| 287 | func (t *testLTXFileOpener) OpenLTXFile(ctx context.Context, level int, minTXID, maxTXID ltx.TXID, offset, size int64) (io.ReadCloser, error) { |
| 288 | return t.OpenLTXFileFunc(ctx, level, minTXID, maxTXID, offset, size) |
nothing calls this directly
no outgoing calls
no test coverage detected