setValidity set the validity of given offset and update NonDefaultValueCount. Third parameter count should only be passed for compressed columns. If not passed, the default value is 1.
(offset int, valid bool)
| 154 | // Third parameter count should only be passed for compressed columns. If |
| 155 | // not passed, the default value is 1. |
| 156 | func (vp *cVectorParty) setValidity(offset int, valid bool) { |
| 157 | vp.nulls.SetBool(offset, valid) |
| 158 | } |
| 159 | |
| 160 | // GetValidity implements GetValidity in cVectorParty |
| 161 | func (vp *cVectorParty) GetValidity(offset int) bool { |
no test coverage detected