(index int32, rowNum int32)
| 295 | } |
| 296 | |
| 297 | func (s *IoTDBRpcDataSet) isNull(index int32, rowNum int32) bool { |
| 298 | // -1 for time column which will never be null |
| 299 | return index >= 0 && s.curTsBlock.GetColumn(index).IsNull(rowNum) |
| 300 | } |
| 301 | |
| 302 | func (s *IoTDBRpcDataSet) getBooleanByIndex(columnIndex int32) (bool, error) { |
| 303 | if index, err := s.getTsBlockColumnIndexForColumnIndex(columnIndex); err != nil { |
no test coverage detected