()
| 922 | } |
| 923 | |
| 924 | func (c *SyncIterator) closeCurrRowGroup() { |
| 925 | if c.currChunk != nil { |
| 926 | c.currChunk.Close() |
| 927 | } |
| 928 | |
| 929 | c.currRowGroup = nil |
| 930 | c.currRowGroupMin = EmptyRowNumber() |
| 931 | c.currRowGroupMax = EmptyRowNumber() |
| 932 | c.currChunk = nil |
| 933 | c.setPage(nil) |
| 934 | } |
| 935 | |
| 936 | // Several variations of optimized makeResult functions: |
| 937 |
no test coverage detected