()
| 808 | } |
| 809 | |
| 810 | func (c *RunLengthEncodedColumn) IsNulls() []bool { |
| 811 | result := make([]bool, c.positionCount) |
| 812 | v := c.value.IsNull(0) |
| 813 | for i := int32(0); i < c.positionCount; i++ { |
| 814 | result[i] = v |
| 815 | } |
| 816 | return result |
| 817 | } |
| 818 | |
| 819 | func (c *RunLengthEncodedColumn) GetPositionCount() int32 { |
| 820 | return c.positionCount |