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

Method getLong

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

Source from the content-addressed store, hash-verified

432}
433
434func (s *IoTDBRpcDataSet) getLong(columnName string) (int64, error) {
435 if index, err := s.getTsBlockColumnIndexForColumnName(columnName); err != nil {
436 return 0, err
437 } else {
438 return s.getLongByTsBlockColumnIndex(index)
439 }
440}
441
442func (s *IoTDBRpcDataSet) getLongByTsBlockColumnIndex(tsBlockColumnIndex int32) (int64, error) {
443 if err := s.checkRecord(); err != nil {

Callers 1

GetLongMethod · 0.80

Tested by

no test coverage detected