(path string, ids *common.IDMap[int64])
| 203 | } |
| 204 | |
| 205 | func newWalBlockFlush(path string, ids *common.IDMap[int64]) *walBlockFlush { |
| 206 | return &walBlockFlush{ |
| 207 | path: path, |
| 208 | ids: ids, |
| 209 | } |
| 210 | } |
| 211 | |
| 212 | // file() opens the parquet file and returns it. previously this method cached the file on first open |
| 213 | // 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