(v *vectors.Vector, idx int, val memCom.DataValue)
| 180 | } |
| 181 | |
| 182 | func setDataValue(v *vectors.Vector, idx int, val memCom.DataValue) { |
| 183 | if val.Valid { |
| 184 | if v.DataType == memCom.Bool { |
| 185 | v.SetBool(idx, val.BoolVal) |
| 186 | } else { |
| 187 | v.SetValue(idx, val.OtherVal) |
| 188 | } |
| 189 | } |
| 190 | } |
| 191 | |
| 192 | func GetFactory() TestFactoryT { |
| 193 | return testFactory |
no test coverage detected