()
| 716 | } |
| 717 | |
| 718 | func (c *RunLengthEncodedColumn) GetBooleans() ([]bool, error) { |
| 719 | v, err := c.value.GetBoolean(0) |
| 720 | if err != nil { |
| 721 | return nil, err |
| 722 | } |
| 723 | result := make([]bool, c.positionCount) |
| 724 | for i := int32(0); i < c.positionCount; i++ { |
| 725 | result[i] = v |
| 726 | } |
| 727 | return result, err |
| 728 | } |
| 729 | |
| 730 | func (c *RunLengthEncodedColumn) GetInts() ([]int32, error) { |
| 731 | v, err := c.value.GetInt(0) |
nothing calls this directly
no test coverage detected