| 649 | } |
| 650 | |
| 651 | type RunLengthEncodedColumn struct { |
| 652 | baseColumn |
| 653 | value Column |
| 654 | positionCount int32 |
| 655 | } |
| 656 | |
| 657 | func NewRunLengthEncodedColumn(value Column, positionCount int32) (*RunLengthEncodedColumn, error) { |
| 658 | if value == nil { |
nothing calls this directly
no outgoing calls
no test coverage detected