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

Method getIntByIndex

client/rpcdataset.go:389–395  ·  view source on GitHub ↗
(columnIndex int32)

Source from the content-addressed store, hash-verified

387}
388
389func (s *IoTDBRpcDataSet) getIntByIndex(columnIndex int32) (int32, error) {
390 if index, err := s.getTsBlockColumnIndexForColumnIndex(columnIndex); err != nil {
391 return 0, err
392 } else {
393 return s.getIntByTsBlockColumnIndex(index)
394 }
395}
396
397func (s *IoTDBRpcDataSet) getInt(columnName string) (int32, error) {
398 if index, err := s.getTsBlockColumnIndexForColumnName(columnName); err != nil {

Callers 1

GetIntByIndexMethod · 0.80

Tested by

no test coverage detected