MCPcopy Create free account
hub / github.com/apache/iotdb-client-go / isNull

Method isNull

client/rpcdataset.go:297–300  ·  view source on GitHub ↗
(index int32, rowNum int32)

Source from the content-addressed store, hash-verified

295}
296
297func (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
302func (s *IoTDBRpcDataSet) getBooleanByIndex(columnIndex int32) (bool, error) {
303 if index, err := s.getTsBlockColumnIndexForColumnIndex(columnIndex); err != nil {

Calls 2

GetColumnMethod · 0.80
IsNullMethod · 0.65

Tested by

no test coverage detected