(path string, ids *common.IDMap[int64])
| 210 | } |
| 211 | |
| 212 | func newWalBlockFlush(path string, ids *common.IDMap[int64]) *walBlockFlush { |
| 213 | return &walBlockFlush{ |
| 214 | path: path, |
| 215 | ids: ids, |
| 216 | } |
| 217 | } |
| 218 | |
| 219 | // file() opens the parquet file and returns it. previously this method cached the file on first open |
| 220 | // but the memory cost of this was quite high. so instead we open it fresh every time. This |
no outgoing calls
no test coverage detected