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

Method isNullByColumnName

client/rpcdataset.go:289–295  ·  view source on GitHub ↗
(columnName string)

Source from the content-addressed store, hash-verified

287}
288
289func (s *IoTDBRpcDataSet) isNullByColumnName(columnName string) (bool, error) {
290 if index, err := s.getTsBlockColumnIndexForColumnName(columnName); err != nil {
291 return false, err
292 } else {
293 return s.isNull(index, s.tsBlockIndex), nil
294 }
295}
296
297func (s *IoTDBRpcDataSet) isNull(index int32, rowNum int32) bool {
298 // -1 for time column which will never be null

Callers 1

IsNullMethod · 0.80

Calls 2

isNullMethod · 0.95

Tested by

no test coverage detected