(path string, ids *common.IDMap[int64], dedcols backend.DedicatedColumns)
| 213 | } |
| 214 | |
| 215 | func newWalBlockFlush(path string, ids *common.IDMap[int64], dedcols backend.DedicatedColumns) *walBlockFlush { |
| 216 | return &walBlockFlush{ |
| 217 | path: path, |
| 218 | ids: ids, |
| 219 | dedcols: dedcols, |
| 220 | } |
| 221 | } |
| 222 | |
| 223 | // file() opens the parquet file and returns it. previously this method cached the file on first open |
| 224 | // 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