commonIterator implements common.Iterator. it is returned from the AppendFile and is meant to be passed to a CreateBlock
| 1035 | // commonIterator implements common.Iterator. it is returned from the AppendFile and is meant |
| 1036 | // to be passed to a CreateBlock |
| 1037 | type commonIterator struct { |
| 1038 | meta *backend.BlockMeta |
| 1039 | iter *MultiBlockIterator[parquet.Row] |
| 1040 | schema *parquet.Schema |
| 1041 | } |
| 1042 | |
| 1043 | func newCommonIterator(meta *backend.BlockMeta, iter *MultiBlockIterator[parquet.Row], schema *parquet.Schema) *commonIterator { |
| 1044 | return &commonIterator{ |
nothing calls this directly
no outgoing calls
no test coverage detected