(r cacheReaderAt, maxPageSize int, size int64, footerSize uint32)
| 77 | ) |
| 78 | |
| 79 | func newCachedReaderAt(r cacheReaderAt, maxPageSize int, size int64, footerSize uint32) *cachedReaderAt { |
| 80 | return &cachedReaderAt{r, map[int64]cachedObjectRecord{}, size, footerSize, maxPageSize} |
| 81 | } |
| 82 | |
| 83 | // called by parquet-go in OpenFile() to set offset and length of footer section |
| 84 | func (r *cachedReaderAt) SetFooterSection(offset, length int64) { |
no outgoing calls